Merge pull request #111 from IBM/avir_cs_2025_q2 #55
This file contains hidden or 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 and publish | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| if: "github.event_name == 'push' && github.ref == 'refs/heads/main' && !startsWith(github.event.head_commit.message, 'chore')" | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| token: ${{ secrets.ADMIN_TOKEN }} | |
| - name: setup nodejs | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: release using semantic-release | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.ADMIN_TOKEN }} | |
| GIT_AUTHOR_NAME: secrets.automation.dev | |
| GIT_AUTHOR_EMAIL: [email protected] | |
| GIT_COMMITTER_NAME: secrets.automation.dev | |
| GIT_COMMITTER_EMAIL: [email protected] | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install python3 | |
| pip install --user bumpversion | |
| npm install @semantic-release/changelog | |
| npm install @semantic-release/exec | |
| npm install @semantic-release/git | |
| npm install @semantic-release/github | |
| npm install @semantic-release/release-notes-generator -D | |
| npx semantic-release | |