Merge pull request #23 from resilient-tech/version-15-hotfix #1
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: Generate Semantic Release | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - version-15 | |
| jobs: | |
| release: | |
| name: Release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Entire Repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: Setup dependencies | |
| run: | | |
| npm install @semantic-release/git @semantic-release/exec --no-save | |
| - name: Create Release | |
| env: | |
| GH_TOKEN: ${{ secrets.BOT_TOKEN }} | |
| GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }} | |
| GIT_AUTHOR_NAME: "Resilient Tech Bot" | |
| GIT_AUTHOR_EMAIL: "bot@resilient.tech" | |
| GIT_COMMITTER_NAME: "Resilient Tech Bot" | |
| GIT_COMMITTER_EMAIL: "bot@resilient.tech" | |
| run: npx semantic-release |