Skip to content

🔖 v0.1.20

🔖 v0.1.20 #18

Workflow file for this run

on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.PR_GITHUB_TOKEN }}
- uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- run: npm ci --ignore-scripts --legacy-peer-deps
- uses: crazy-max/ghaction-import-gpg@v5
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
git_user_signingkey: true
git_commit_gpgsign: true
- uses: changesets/action@v1
with:
title: 🔖 new release
version: npm run version
publish: npx changeset publish
setupGitUser: false
env:
GITHUB_TOKEN: ${{ secrets.PR_GITHUB_TOKEN }}