fix(unlock-app): Fix auth flow bug preventing new users from proceedi… #510
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: Publish unlock packages to npm | |
on: | |
push: | |
branches: | |
- 'production' | |
jobs: | |
publish: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'yarn' | |
registry-url: 'https://registry.npmjs.org' | |
- run: sudo apt-get update -y | |
- run: sudo apt-get install -y default-jdk | |
- run: yarn install | |
- run: yarn release | |
env: | |
NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |