Skip to content

Commit

Permalink
Update upload-/download-artifact actions in build pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
atextor committed Sep 21, 2024
1 parent cdb851c commit f49df22
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
mv cli/build/bin/owl owl-x86_64-linux-snapshot
mv cli/build/libs/owl-cli-snapshot.jar .
- name: Upload Linux Artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: artifacts-linux
path: |
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
- name: Prepare Artifacts
run: mv cli/build/bin/owl owl-x86_64-apple-darwin-snapshot
- name: Upload Macos Artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: artifacts-macos
path: owl-x86_64-apple-darwin-snapshot
Expand Down Expand Up @@ -217,7 +217,7 @@ jobs:
files: ./*.exe
args: -9
- name: Upload Windows Artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: artifacts-windows
path: owl-x86_64-windows-snapshot.exe
Expand All @@ -231,15 +231,15 @@ jobs:
with:
fetch-depth: 0
- name: Fetch Linux Artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: artifacts-linux
- name: Fetch Macos Artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: artifacts-macos
- name: Fetch Windows Artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: artifacts-windows
- name: Push Snapshot Release
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
mv cli/build/bin/owl owl-x86_64-linux-${RELEASE_VERSION}
mv cli/build/libs/owl-cli-${RELEASE_VERSION}.jar .
- name: Upload Linux Artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: artifacts-linux
path: |
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
- name: Prepare Artifacts
run: mv cli/build/bin/owl owl-x86_64-apple-darwin-${RELEASE_VERSION}
- name: Upload Macos Artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: artifacts-macos
path: owl-x86_64-apple-darwin-${{ env.RELEASE_VERSION }}
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
files: ./*.exe
args: -9
- name: Upload Windows Artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: artifacts-windows
path: owl-x86_64-windows-${{ env.RELEASE_VERSION }}.exe
Expand All @@ -205,15 +205,15 @@ jobs:
with:
fetch-depth: 0
- name: Fetch Linux Artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: artifacts-linux
- name: Fetch Macos Artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: artifacts-macos
- name: Fetch Windows Artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: artifacts-windows
- name: Set env
Expand Down

0 comments on commit f49df22

Please sign in to comment.