Skip to content

Commit

Permalink
Update native creation
Browse files Browse the repository at this point in the history
  • Loading branch information
dhadka committed Dec 30, 2023
1 parent 29a69f4 commit a75ead8
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,10 @@ jobs:
- uses: actions/checkout@v3
- name: Build Windows native files
run: make -C native
- name: Create native bundle
run: zip -r native-windows.zip native
- uses: actions/upload-artifact@v4
if: always()
with:
name: native-windows
path: native-windows.zip
path: native/
stage:
needs: build
runs-on: ubuntu-latest
Expand Down Expand Up @@ -90,13 +87,18 @@ jobs:
with:
name: Maven bundle
path: maven/*-bundle.jar
- name: Remove native/ folder
run: rm -rf native/
- name: Download Windows native bundle
uses: actions/download-artifact@v4
if: always()
with:
name: native-windows
path: native/
- name: Show content
run: ls -R .
- name: Create native bundle
run: zip -r native-windows.zip native
- name: Stage GitHub release
if: ${{ inputs.publish_github }}
run: |
Expand Down

0 comments on commit a75ead8

Please sign in to comment.