Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
jenbutongit committed Jan 19, 2024
1 parent 72392dc commit 1889a2d
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Release

on:
push:
branches: ["main", "[0-9].*.*"]

jobs:
release:
runs-on: ubuntu-latest

steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@master

- name: Setup node env πŸ—
uses: actions/setup-node@v3
with:
node-version: 18
check-latest: true

- name: Install dependencies πŸ‘¨πŸ»β€
run: yarn install

- name: Release πŸš€
run: yarn release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 1889a2d

Please sign in to comment.