[🚀 Release Beta] v3.0.2-beta.1 #15
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 Beta | |
on: | |
push: | |
branches: | |
- beta | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: "!startsWith(github.event.head_commit.message, '[🚀 Release Beta]')" | |
steps: | |
- uses: actions/checkout@main | |
with: | |
token: ${{ secrets.GIT_TOKEN }} | |
- uses: actions/setup-node@main | |
with: | |
node-version: "lts/*" | |
registry-url: "https://registry.npmjs.org" | |
- run: git config --global user.name 'Patryk Rzucidlo (@PTKDev)' | |
- run: git config --global user.email '[email protected]' | |
- run: npm ci | |
- run: npm run github-workflow-next-version -- --cmd beta | |
- run: npm run release | |
- run: npm run pre-commit | |
- id: pkgjson | |
run: chmod +x ./scripts/version.sh && ./scripts/version.sh | |
- run: git add . && git commit -m "[🚀 Release Beta] v${{ steps.pkgjson.outputs.pkgversion }}" && git push | |
- run: npm publish --tag beta | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- run: git fetch --all && git checkout nightly | |
- run: npm run github-workflow-next-version -- --cmd nightly-next | |
- run: npm run pre-commit | |
- id: nextnightly | |
run: chmod +x ./scripts/version.sh && ./scripts/version.sh | |
- run: git add . && git commit -m "[🚀 Release Nightly] v${{ steps.nextnightly.outputs.pkgversion }}" && git push |