Merge pull request #113 from MFB-Technologies-Inc/feature/6990-upgrad… #4
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: create a release | |
| # TODO: remove trigger | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: "20" | |
| - name: Run the release script | |
| env: | |
| PAT_TOKEN: ${{ secrets.RELEASE_PAT_TOKEN }} | |
| GIT_EMAIL: ${{ vars.RELEASE_GIT_EMAIL }} | |
| run: ../scripts/release.sh |