Skip to content

Commit

Permalink
Merge branch 'releases/v1'
Browse files Browse the repository at this point in the history
  • Loading branch information
leoli0605 committed Mar 18, 2024
2 parents bf8ee72 + 93009f0 commit 577754d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,6 @@ jobs:
tag: ${{ steps.changelog.outputs.tag }}
token: ${{ secrets.PAT }}

- name: Update download links
if: steps.release.outputs.id != ''
run: |
node docs/download_links.mjs
git add README.md
git diff --cached --quiet || (git commit -m "docs: update download links" && git push origin ${{ github.ref }})
- name: Merge release branch
if: steps.release.outputs.id != ''
run: |
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/versioning.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,17 @@ jobs:
- uses: Actions-R-Us/actions-tagger@latest
with:
publish_latest_tag: true

- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- run: |
npm install -g pnpm
pnpm install
- name: Update download links
run: |
node docs/download_links.mjs
git add README.md
git diff --cached --quiet || (git commit -m "docs: update download links" && git push origin ${{ github.ref }})
git push origin ${{ github.ref }}

0 comments on commit 577754d

Please sign in to comment.