Skip to content

Commit

Permalink
Validate that build generates executable
Browse files Browse the repository at this point in the history
  • Loading branch information
zeerayne committed Mar 24, 2024
1 parent 9d05090 commit d98428f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ jobs:
uses: JackMcKew/pyinstaller-action-windows@main
with:
path: src
- name: Check file existence
uses: andstor/file-existence-action@v3
with:
files: dist/1cv8_postgres_helper.exe
- name: File exists
if: steps.check_files.outputs.files_exists == 'true'
run: echo All files exists!
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
Expand Down

0 comments on commit d98428f

Please sign in to comment.