Skip to content

Commit

Permalink
CI: fix wrong release tag and name
Browse files Browse the repository at this point in the history
  • Loading branch information
itsHenry35 committed Jun 22, 2023
1 parent 49ec933 commit a3a06cc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ jobs:
- name: Release
uses: svenstaro/upload-release-action@v2
with:
tag: ${{ github.ref }}
release_name: ${{ github.ref }}
tag: ${{ github.ref_name }}
release_name: ${{ github.ref_name }}
overwrite: true
file: D:\\a\\ledu\\ledu\\dist\\ledu_download_win64.exe

Expand Down Expand Up @@ -79,8 +79,8 @@ jobs:
- name: Release
uses: svenstaro/upload-release-action@v2
with:
tag: ${{ github.ref }}
release_name: ${{ github.ref }}
tag: ${{ github.ref_name }}
release_name: ${{ github.ref_name }}
overwrite: true
file: /home/runner/work/ledu/ledu/dist/ledu_download_linux_amd64

Expand Down Expand Up @@ -122,8 +122,8 @@ jobs:
- name: Release
uses: svenstaro/upload-release-action@v2
with:
tag: ${{ github.ref }}
release_name: ${{ github.ref }}
tag: ${{ github.ref_name }}
release_name: ${{ github.ref_name }}
overwrite: true
file: /Users/runner/work/ledu/ledu/ledu_download_macos.zip

Expand Down

0 comments on commit a3a06cc

Please sign in to comment.