Skip to content

Commit

Permalink
modify ci
Browse files Browse the repository at this point in the history
  • Loading branch information
netweng committed Sep 13, 2024
1 parent 648c0a7 commit 8dc8601
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@ jobs:
RELEASE_UPLOAD_ID: ${{ steps.create_release.outputs.id }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- name: setup node
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: 18
- name: get version
Expand All @@ -24,7 +26,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: app-${{ env.TAG_VERSION }}
tag_name: ${{ env.TAG_VERSION }}
release_name: "Desktop app ${{ env.TAG_VERSION }}"
body: "See the assets to download this version and install."
draft: false
Expand All @@ -38,9 +40,11 @@ jobs:

runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- name: setup node
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: 18
- name: install Rust stable
Expand Down

0 comments on commit 8dc8601

Please sign in to comment.