Merge pull request #292 from remix-pwa/v5-fixes-1 #214
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, dev] | |
jobs: | |
release: | |
name: Semantic release | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
# Needs to fetch historical commits in order to compare with origin/main | |
fetch-depth: 0 | |
persist-credentials: false | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: npm clean-install | |
- name: Build packages | |
run: npm run build | |
- name: Setup NPM | |
run: | | |
npm config set workspaces-update=false --global | |
- name: Semantic release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_ACCESS_TOKEN || secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NODE_ENV: production | |
HUSKY: 0 | |
run: | | |
npx --package @semantic-release/release-notes-generator --package @semantic-release/git --package @semantic-release/changelog --package @qiwi/multi-semantic-release multi-semantic-release |