v9.5.0 #50
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
| # author: elliot-huffman | |
| name: release | |
| on: | |
| release: | |
| types: [created] | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.x | |
| registry-url: https://registry.npmjs.org/ | |
| - uses: pnpm/action-setup@v2 | |
| with: | |
| version: 8 | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Publish to npm | |
| run: pnpm run package:latest | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH }} | |
| - name: Root | |
| run: pnpm run package:tgz | |
| - name: Website Setup | |
| working-directory: website | |
| run: | | |
| npm cache clean --force | |
| npm install | |
| npm run build | |
| - name: Deploy | |
| uses: JamesIves/github-pages-deploy-action@4.1.3 | |
| with: | |
| branch: gh-pages | |
| folder: ./website/out |