Skip to content

Commit

Permalink
FFFFFFFFFFFFFFFFFFFF5
Browse files Browse the repository at this point in the history
Signed-off-by: Maxim Logaev <maxlogaev@proton.me>
  • Loading branch information
mxlgv committed Mar 18, 2024
1 parent c52df5e commit 3aa25cc
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/build-win64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ jobs:
update: true
install: git
- run: git config --global core.autocrlf input
- name: Extract tag name
id: tag
uses: actions/github-script@0.2.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
return context.payload.ref.replace(/\/refs\/tags\//, '');
- uses: actions/checkout@v4
- name: Build Dino
run: |
Expand All @@ -24,7 +31,6 @@ jobs:
with:
name: dino-installer
path: windows-installer/dino-installer.exe

- name: Release Dino installer
if: ${{ github.ref_type == 'tag' }}
uses: svenstaro/upload-release-action@2.9.0
Expand All @@ -33,5 +39,5 @@ jobs:
file: windows-installer/dino-installer.exe
asset_name: dino-installer.exe
tag: ${{ github.ref }}
release_name: Dino $tag
release_name: Dino ${{ steps.tag.outputs.result }}
overwrite: true

0 comments on commit 3aa25cc

Please sign in to comment.