Skip to content

Commit

Permalink
feat: add GHA release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ahoneiser committed Dec 1, 2023
1 parent 77ff920 commit 076db69
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/realease.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
name: release
on:
push:
branches:
- main

jobs:
release:
name: release
runs-on:
- ubuntu-latest

steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: setup node.js
uses: actions/setup-node@v4
with:
node-version: "lts/*"

- name: release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

run: |-
npx semantic-release@22

0 comments on commit 076db69

Please sign in to comment.