Skip to content

Commit

Permalink
ci: configure legacy release action
Browse files Browse the repository at this point in the history
  • Loading branch information
gruhn committed Jan 9, 2024
1 parent b057338 commit d3f41b7
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/legacy-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Legacy Release
on:
push:
branches:
- master-v3
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 16
- name: Install & Build
run: |
npm ci
npm run build
npm run build:docs
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release

0 comments on commit d3f41b7

Please sign in to comment.