Skip to content

Commit

Permalink
feat: Add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCommieAxolotl committed Aug 1, 2023
1 parent e20416f commit dc2b93c
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
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 upload stable dist/*.js --clobber
gh release edit stable --title "v$VERSION"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VERSION: ${{ env.VERSION }}

0 comments on commit dc2b93c

Please sign in to comment.