Merge pull request #1018 from typed-ember/release-preview #182
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
| # For every push to the master branch, this publishes an NPM package to the | |
| # "unstable" NPM tag. | |
| name: Publish Unstable | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| concurrency: | |
| group: publish-unstable-${{ github.head_ref || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| publish: | |
| name: "NPM Publish" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v2 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| # This creates an .npmrc that reads the NODE_AUTH_TOKEN environment variable | |
| registry-url: 'https://registry.npmjs.org' | |
| cache: 'pnpm' | |
| - run: pnpm install | |
| # - name: Lint | |
| # run: pnpm lint | |
| - name: Build | |
| run: pnpm build | |
| - name: set versions | |
| run: node ./test-packages/unstable-release/version.js | |
| - name: npm publish | |
| run: node ./test-packages/unstable-release/publish.js | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |