chore(deps): upgrade dependencies (#23) #36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: {} | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
if: ${{ !contains(github.event.head_commit.message, 'chore(release):') }} | |
steps: | |
- name: no-op | |
run: echo "No-op" | |
release_github: | |
name: Release to Github | |
needs: release | |
runs-on: ubuntu-latest | |
outputs: | |
bump: ${{ steps.bump.outputs.bump }} | |
if: ${{ !contains(github.event.head_commit.message, 'chore(release):') }} | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Bump version | |
id: bump | |
run: | | |
bin/version.bash | |
if grep -E "^- (fix|feat|major)\!*" dist/changelog.md; then | |
echo "bump=true" >> $GITHUB_OUTPUT | |
else | |
echo "bump=false" >> $GITHUB_OUTPUT | |
fi | |
- name: Github Release | |
if: ${{ steps.bump.outputs.bump == 'true' }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.P6_A_GH_TOKEN }} | |
GITHUB_REPOSITORY: ${{ github.repository }} | |
GITHUB_REF: ${{ github.ref }} | |
run: | | |
TAG_NAME=$(cat dist/releasetag.txt) | |
if gh release view "$TAG_NAME" -R "$GITHUB_REPOSITORY" > /dev/null 2>&1; then | |
echo "Release with tag $TAG_NAME already exists. Skipping release creation." | |
else | |
gh release create "$TAG_NAME" -R "$GITHUB_REPOSITORY" -F dist/changelog.md -t "$TAG_NAME" --target "$GITHUB_REF" | |
echo "Release with tag $TAG_NAME created successfully." | |
fi | |
release_npmjs: | |
name: Release to NPM JS | |
needs: release_github | |
runs-on: ubuntu-latest | |
container: | |
image: jsii/superchain:1-bookworm-slim-node22 | |
if: ${{ needs.release_github.outputs.bump == 'true' && !contains(github.event.head_commit.message, 'chore(release):') }} | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Restore NPM node_modules | |
uses: actions/cache/[email protected] | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-node_modules- | |
- name: Install node_modules | |
run: | | |
sudo corepack enable | |
yarn install | |
- name: Cache NPM node_modules | |
uses: actions/[email protected] | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-node_modules- | |
- name: Bump version | |
run: bin/version.bash | |
- name: Compile | |
run: yarn run compile | |
- name: JSII Pacmak JS | |
run: yarn run jsii:pacmak:js | |
- name: Publish to NPM | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: yarn run publish:npm | |
release_pypi: | |
name: Release to PYPI | |
needs: release_github | |
runs-on: ubuntu-latest | |
container: | |
image: jsii/superchain:1-bookworm-slim-node22 | |
if: ${{ needs.release_github.outputs.bump == 'true' && !contains(github.event.head_commit.message, 'chore(release):') }} | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Setup Python | |
uses: actions/[email protected] | |
with: | |
python-version: '3.x' | |
- name: Restore NPM node_modules | |
uses: actions/cache/[email protected] | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-node_modules- | |
- name: Install node_modules | |
run: | | |
sudo corepack enable | |
yarn install | |
- name: Cache NPM node_modules | |
uses: actions/[email protected] | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-node_modules- | |
- name: Bump version | |
run: bin/version.bash | |
- name: Compile | |
run: yarn run compile | |
- name: JSII Pacmak PY | |
run: yarn run jsii:pacmak:py | |
- name: Publish to PYPI | |
env: | |
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }} | |
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} | |
run: yarn run publish:pypi | |
release_nuget: | |
name: Release to Nuget | |
needs: release_github | |
runs-on: ubuntu-latest | |
container: | |
image: jsii/superchain:1-bookworm-slim-node22 | |
if: ${{ needs.release_github.outputs.bump == 'true' && !contains(github.event.head_commit.message, 'chore(release):') }} | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Restore NPM node_modules | |
uses: actions/cache/[email protected] | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-node_modules- | |
- name: Install node_modules | |
run: | | |
sudo corepack enable | |
yarn install | |
- name: Cache NPM node_modules | |
uses: actions/[email protected] | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-node_modules- | |
- name: Bump version | |
run: bin/version.bash | |
- name: Compile | |
run: yarn run compile | |
- name: JSII Pacmak PY | |
run: yarn run jsii:pacmak:dotnet | |
- name: Publish to Nuget | |
env: | |
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }} | |
run: | | |
yarn run publish:nuget | |
release_golang: | |
name: Release to GoLang | |
needs: release_github | |
runs-on: ubuntu-latest | |
container: | |
image: jsii/superchain:1-bookworm-slim-node22 | |
if: ${{ needs.release_github.outputs.bump == 'true' && !contains(github.event.head_commit.message, 'chore(release):') }} | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Restore NPM node_modules | |
uses: actions/cache/[email protected] | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-node_modules- | |
- name: Install node_modules | |
run: | | |
sudo corepack enable | |
yarn install | |
- name: Cache NPM node_modules | |
uses: actions/[email protected] | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-node_modules- | |
- name: Bump version | |
run: bin/version.bash | |
- name: Compile | |
run: yarn run compile | |
- name: JSII Pacmak GoLang | |
run: yarn run jsii:pacmak:go | |
- name: Publish to GoLang | |
env: | |
GIT_USER_NAME: github-actions | |
GIT_USER_EMAIL: [email protected] | |
GH_TOKEN: ${{ secrets.GO_GITHUB_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GO_GITHUB_TOKEN }} | |
run: | | |
git config --global user.name "$GIT_USER_NAME" | |
git config --global user.email "$GIT_USER_EMAIL" | |
git remote set-url origin "https://[email protected]/$GITHUB_REPOSITORY.git" | |
yarn run publish:golang |