Skip to content

Commit

Permalink
workflow - tests
Browse files Browse the repository at this point in the history
  • Loading branch information
OcelotWalrus authored Jan 24, 2024
1 parent 8befe65 commit 7deca61
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
OUTPUT: Bane-Of-Wargs-Linux
OUTPUT_DIST: Bane-Of-Wargs-Dist.zip
steps:
- name: Fix Checkout Problems
run: git config --global core.protectNTFS false
Expand All @@ -44,11 +45,22 @@ jobs:
python -m PyInstaller Bane-Of-Wargs.spec
mv dist/Bane-Of-Wargs Bane-Of-Wargs-Linux
- name: Create Unpacked Compiled Program Zip
run: |
cd dist/
zip Bane-Of-Wargs-Dist.zip Bane-Of-Wargs-Other/**********
cd ..
mv dist/Bane-Of-Wargs-Dist.zip Bane-Of-Wargs-Dist.zip
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: ${{ env.OUTPUT }}
path: ${{ env.OUTPUT }}
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: ${{ env.OUTPUT_DIST }}
path: ${{ env.OUTPUT_DIST }}

mac_64_executable:
name: MacOS x64 Executable
Expand Down

0 comments on commit 7deca61

Please sign in to comment.