fix: Debug publish job #17
Workflow file for this run
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: Publish NPM Package | |
| on: | |
| push: | |
| # tags: | |
| # - 'v*' | |
| jobs: | |
| # build-and-test: | |
| # uses: ./.github/workflows/main.yml | |
| publish: | |
| # needs: build-and-test | |
| # uses: iExecBlockchainComputing/github-actions-workflows/.github/workflows/[email protected] | |
| # secrets: | |
| # npm-token: ${{ secrets.NPM_TOKEN }} | |
| runs-on: ubuntu-latest | |
| # environment: production | |
| permissions: | |
| contents: read | |
| packages: write | |
| id-token: write | |
| steps: | |
| - name: Ensure npm-token | |
| run: | | |
| if [ -n "${{ secrets.NPM_TOKEN }}" ]; then | |
| echo "`npm-token` secret is set" | |
| else | |
| echo "Missing `npm-token` secret (required unless `dry-run: true`)" | |
| exit 1 | |
| fi | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| scope: '@iexec' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Run build | |
| run: npm run build | |
| - name: Publish package | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| run: npm publish --access public |