Skip to content

Commit

Permalink
actions/upload-artifact@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
hemnstill committed Aug 8, 2024
1 parent 12e233a commit f2eace0
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-alpine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
apk add --no-cache bash
./${{ inputs.workflow }}/build_${{ inputs.toolset }}.sh
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: build-${{ inputs.toolset }}
path: ./${{ inputs.workflow }}/release/build-${{ inputs.toolset }}.tar.gz
2 changes: 1 addition & 1 deletion .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
apt install -y docker.io
./${{ inputs.workflow }}/build_${{ inputs.toolset }}.sh
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: build-${{ inputs.toolset }}
path: ./${{ inputs.workflow }}/release/build-${{ inputs.toolset }}.tar.gz
2 changes: 1 addition & 1 deletion .github/workflows/build-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: |
./${{ inputs.workflow }}/build_${{ inputs.toolset }}.sh
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: build-${{ inputs.toolset }}
path: ./${{ inputs.workflow }}/release/build-${{ inputs.toolset }}.tar.gz
2 changes: 1 addition & 1 deletion .github/workflows/build-windows-msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: |
.tools\busybox.exe sh ${{ inputs.workflow }}\build_${{ inputs.toolset }}.sh
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: build-${{ inputs.toolset }}
path: ./${{ inputs.workflow }}/release/build-${{ inputs.toolset }}.tar.gz
2 changes: 1 addition & 1 deletion .github/workflows/build-windows-msys2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
shell:
msys2 {0}

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: build-${{ inputs.toolset }}
path: ./${{ inputs.workflow }}/release/build-${{ inputs.toolset }}.tar.gz
2 changes: 1 addition & 1 deletion .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: |
.tools\busybox.exe sh ${{ inputs.workflow }}\build_${{ inputs.toolset }}.sh
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: build-${{ inputs.toolset }}
path: ./${{ inputs.workflow }}/release/build-${{ inputs.toolset }}.tar.gz
2 changes: 1 addition & 1 deletion .github/workflows/test-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
cd ./${{ inputs.workflow }}
../.tools/busybox.exe bash ./test_windows.sh
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: test-${{ inputs.artifact }}
path: ./${{ inputs.workflow }}/test-windows.md

0 comments on commit f2eace0

Please sign in to comment.