Skip to content

Commit

Permalink
Update publisher-exe.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
NHLOCAL committed Aug 14, 2023
1 parent a8ff63a commit 5d6e2f9
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/publisher-exe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,18 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VERSION: ${{ github.ref }}


- name: Prepare Additional Files
run: |
copy path\to\your\additional_file1.pkl dist\
copy path\to\your\additional_file2.pkl dist\
- name: Zip Artifact Directory
run: |
cd dist
powershell -Command "Compress-Archive -Path * -DestinationPath is-thus-bible.zip"
- name: Set version number
run: |
# Get the version number from the tag (e.g., v1.0.0)
Expand All @@ -42,6 +54,6 @@ jobs:
id: create_release
uses: softprops/action-gh-release@v1
with:
files: "dist/is-this-bible.exe" # Use double quotes and access the VERSION variable correctly
files: "dist/is-this-bible.zip" # Use double quotes and access the VERSION variable correctly
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 5d6e2f9

Please sign in to comment.