Skip to content

Commit

Permalink
Revert change to Windows RELEASE_VERSION (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
yorickdowne authored Aug 24, 2024
1 parent 85d6fcd commit 6875563
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ jobs:
- OS: windows-latest
PYTHON_VERSION: 3.12
BUILD_CMD: |
$BUILD_FILE_NAME = "sync-keys-" + $env:RELEASE_VERSION + "-windows-amd64"
$RELEASE_VERSION = $env:GITHUB_REF.replace('refs/tags/', '')
$BUILD_FILE_NAME = "sync-keys-" + $RELEASE_VERSION + "-windows-amd64"
$BUILD_FILE_NAME_PATH = ".\" + $BUILD_FILE_NAME
pyinstaller --onefile ./sync_keys/main.py --name sync-keys --copy-metadata py_ecc --distpath ${BUILD_FILE_NAME_PATH};
$ZIP_FILE_NAME = $BUILD_FILE_NAME + ".zip"
Expand Down

0 comments on commit 6875563

Please sign in to comment.