Skip to content

Commit

Permalink
ci: add release:rc [no ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Yakutoc committed Nov 24, 2023
1 parent 5a28ae4 commit e93c908
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/publish-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,34 @@ jobs:
uses: ./.github/workflows/publish-common.yml
with:
with-update-package-lock: true
cmd: 'npm run release:rc'
secrets:
gh_token: ${{ secrets.GH_TOKEN }}
npm_registry_token: ${{ secrets.NPM_REGISTRY_TOKEN }}

release-notes:
name: Release
needs:
- publish
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
show-progress: false

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'npm'

- name: Install
run: npm ci --no-audit

- name: Build Changelog
id: github_release
uses: mikepenz/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}

0 comments on commit e93c908

Please sign in to comment.