Mirror of Steamdown (Markdown -> Steam Markup converter)
0

Configure Feed

Select the types of activity you want to include in your feed.

Add publish workflow (#260)

authored by

Spenser Black and committed by
GitHub
(Nov 14, 2024, 1:13 PM EST) eb0b527d a0b3efca

+24 -1
+22
.github/workflows/publish.yml
··· 1 + name: Publish 2 + on: 3 + push: 4 + tags: ["v*"] 5 + 6 + jobs: 7 + publish: 8 + name: Publish 9 + runs-on: ubuntu-latest 10 + 11 + steps: 12 + - uses: actions/checkout@v4 13 + - uses: pnpm/action-setup@v4 14 + - name: Use Node.js 15 + uses: actions/setup-node@v4 16 + with: 17 + node-version: "22.x" 18 + cache: pnpm 19 + - run: pnpm install 20 + - run: pnpm publish --recursive --access public 21 + env: 22 + NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
+2 -1
HACKING.md
··· 31 31 ## Publishing 32 32 33 33 ```shell 34 - pnpm publish -r 34 + # NOTE: This should happen automatically when creating a GitHub Release 35 + pnpm publish --recursive --access public 35 36 ```