mirror of
https://github.com/alrayyes/wiki.git
synced 2025-05-22 15:52:12 +00:00
update gh actions
This commit is contained in:
parent
1cb4dadf13
commit
dde36fa558
2 changed files with 40 additions and 8 deletions
.github/workflows
31
.github/workflows/publish.yaml
vendored
Normal file
31
.github/workflows/publish.yaml
vendored
Normal file
|
@ -0,0 +1,31 @@
|
|||
name: publish
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- v4-alpha # TODO: update
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 18
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
|
||||
- id: publish-cli
|
||||
name: Publish @jackyzha0/quartz
|
||||
uses: JS-DevTools/npm-publish@v2
|
||||
with:
|
||||
package: ./package.json
|
||||
token: ${{ secrets.NPM_AUTH_TOKEN }}
|
||||
strategy: upgrade
|
||||
access: public
|
||||
|
||||
- if: steps.publish-cli.outputs.type != 'none'
|
||||
run: |
|
||||
echo "Version of @jackyzha0/quartz changed: ${{ steps.publish-cli.outputs.old-version }} => ${{ steps.publish-cli.outputs.version }}"
|
Loading…
Add table
Add a link
Reference in a new issue