Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
renatav committed Jun 26, 2024
1 parent f087574 commit 1e443bf
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,19 @@ jobs:
pyinstaller --onefile --name taf -y taf/tools/cli/taf.py
./dist/taf --help | grep "TAF Command Line Interface" || { echo "Error: Expected text not found in the executable output"; exit 1; }
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: true


- name: Upload standalone executable (Linux)
if: matrix.os == 'ubuntu-latest'
uses: actions/upload-release-asset@v1
Expand All @@ -148,7 +161,6 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}


- name: Upload standalone executable (Windows)
if: matrix.os == 'windows-latest'
uses: actions/upload-release-asset@v1
Expand Down

0 comments on commit 1e443bf

Please sign in to comment.