Skip to content

Commit

Permalink
(wip) Working on the nightly release process.
Browse files Browse the repository at this point in the history
  • Loading branch information
eriq-augustine committed Jun 27, 2024
1 parent 68488d5 commit a95c30f
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
script-name: sharkclipper/cli/server.py
standalone: true
onefile: true
output-file: 'shark-clipper'
output-file: 'shark-clipper-${{ runner.os }}-${{ RUNNER_ARCH }}'
include-data-dir: |
./static=static
include-data-files: |
Expand All @@ -65,12 +65,19 @@ jobs:
- name: Upload Artifacts
if: matrix.python-version == '3.11'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }} Build
path: |
build/shark-clipper
build/shark-clipper.exe
name: 'shark-clipper-${{ runner.os }}-${{ RUNNER_ARCH }}'
compression-level: 0
path: build/shark-clipper*

- name: Release Latest
if: matrix.python-version == '3.11'
uses: softprops/action-gh-release@v2
with:
tag_name: latest-release
make_latest: true
files: build/shark-clipper*

- name: Cleanup
if: matrix.python-version == '3.11'
Expand Down

0 comments on commit a95c30f

Please sign in to comment.