Skip to content

Commit

Permalink
Bump actions/download-artifact and actions/upload-artifact
Browse files Browse the repository at this point in the history
Signed-off-by: Jakub Zalas <[email protected]>
  • Loading branch information
jakzal committed Nov 6, 2024
1 parent 84b4a3d commit 9b4aacb
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 @@ -42,19 +42,19 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Publish JARs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: JARs
path: target/*.jar

- name: Publish designer (tar)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: designer.tar
path: dist/designer.tar

- name: Publish designer (zip)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: designer.zip
path: dist/designer.zip
Expand All @@ -76,11 +76,11 @@ jobs:
needs: build
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: designer.tar
path: .
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: designer.zip
path: .
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
echo "created=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT
echo "push=${{ (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master') && github.repository_owner == 'vlingo' }}" >> $GITHUB_OUTPUT
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: designer.tar
path: dist/
Expand Down

0 comments on commit 9b4aacb

Please sign in to comment.