Skip to content

Commit

Permalink
Update GitHub Action
Browse files Browse the repository at this point in the history
  • Loading branch information
Glavo committed Dec 18, 2022
1 parent 0418a92 commit 5573baf
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ jobs:
- run: python3 script/package_platform.py
- uses: actions/upload-artifact@v2
with:
name: linux-jars
path: target/skija-linux-*.jar
name: linux-x64-jars
path: target/skija-linux-x64-*.jar

build_windows:
runs-on: windows-2019
Expand All @@ -83,8 +83,8 @@ jobs:
- run: python3 script/package_platform.py
- uses: actions/upload-artifact@v2
with:
name: windows-jars
path: target/skija-windows-*.jar
name: windows-x64-jars
path: target/skija-windows-x64-*.jar

release:
if: startsWith(github.ref, 'refs/tags/')
Expand All @@ -109,11 +109,11 @@ jobs:
path: target
- uses: actions/download-artifact@v2
with:
name: linux-jars
name: linux-x64-jars
path: target
- uses: actions/download-artifact@v2
with:
name: windows-jars
name: windows-x64-jars
path: target
- name: Release to Maven Central
run: |
Expand Down

0 comments on commit 5573baf

Please sign in to comment.