chore(update): release 1.1.0 π #9
Workflow file for this run
This file contains 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: Build & Publish | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
install-and-build: | |
name: π οΈ Install & Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: ποΈ Checkout | |
uses: actions/checkout@v3 | |
- name: ποΈ Setup node version | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
registry-url: 'https://registry.npmjs.org' | |
- name: π οΈ Install | |
uses: ./.github/actions/cached-deps | |
- name: π οΈ Build | |
run: yarn build | |
- name: π Publish NPM | |
if: startsWith(github.ref, 'refs/tags/v') && contains(github.ref, 'beta') == false | |
run: cd dist && npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} | |
- name: π Publish NPM BETA | |
if: startsWith(github.ref, 'refs/tags/v') && contains(github.ref, 'beta') == true | |
run: cd dist && npm publish --tag beta | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} | |
# Publish to GitHub Package Registry | |
- name: π οΈ Set up package for GPR | |
if: startsWith(github.ref, 'refs/tags/v') && contains(github.ref, 'beta') == false | |
run: yarn gpr:setup | |
- name: π οΈ Use GPR | |
if: startsWith(github.ref, 'refs/tags/v') && contains(github.ref, 'beta') == false | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
registry-url: https://npm.pkg.github.com/ | |
scope: '@celtian' | |
- name: π Publish to GitHub Package Registry | |
if: startsWith(github.ref, 'refs/tags/v') && contains(github.ref, 'beta') == false | |
run: | | |
cd dist | |
npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{github.token}} |