cmc/thelounge-theme-crypto

🎨 Retro & high-contrast theme

clone: git clone https://gitbay.org/cmc/thelounge-theme-crypto.git

master: .github/workflows/release.yml · raw

 1name: Release
 2
 3on:
 4  push:
 5    tags: v*
 6
 7jobs:
 8  release:
 9    name: Release workflow
10
11    runs-on: ubuntu-latest
12
13    steps:
14      - uses: actions/checkout@master
15
16      - name: Setup Node.js
17        uses: actions/setup-node@v1
18        with:
19          registry-url: 'https://registry.npmjs.org/'
20
21      - name: Install
22        run: yarn --frozen-lockfile --non-interactive
23
24      - name: Publish
25        run: npm publish
26        env:
27          NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}