Skip to content

Commit

Permalink
experiment with saving build results as artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippMa committed Jan 14, 2025
1 parent 298b2c5 commit 6a66297
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/build_executable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,16 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.13']
include:
- os: ubuntu-latest
art-name: ubuntu-executable
art-path: dist/cli
- os: windows-latest
art-name: windows-executable
art-path: dist/cli.exe
- os: macos-latest
art-name: macos-executable
art-path: dist/cli

steps:
- uses: actions/checkout@v4
Expand All @@ -52,3 +62,9 @@ jobs:

- name: Test executable
run: dist/cli --help

- name: Upload executable artifact
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.art-name }}
path: ${{ matrix.art-path }}

0 comments on commit 6a66297

Please sign in to comment.