Skip to content

release: v0.4.2

release: v0.4.2 #5

Workflow file for this run

name: Release
on:
push:
branches:
- "main"
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v2
with:
node-version: 19
cache: "pnpm"
- run: pnpm install --frozen-lockfile
- run: pnpm build
- name: "Find Version in package.json"
id: version
run: |
echo "VERSION=$(node -p "require('./package.json').version")" >> $GITHUB_ENV
- name: "Create Release"
if: "startsWith(github.event.head_commit.message, 'release: ')"
run: |
gh release create "v${{ env.VERSION }}"" ./dist/*.js \
--title "v${{ env.VERSION }}"" \
--notes "Grab this version of pyotr from [npm](https://npmjs.com/package/pyotr/v/${{ env.VERSION }})"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VERSION: ${{ env.VERSION }}
- name: "Publish to NPM"
if: "startsWith(github.event.head_commit.message, 'release: ')"
run: |
npm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}"
pnpm publish
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}