Skip to content

Commit

Permalink
Revert to actions/upload-artifact@v3
Browse files Browse the repository at this point in the history
To properly support v4 we will need to do more work.
  • Loading branch information
pront authored Oct 31, 2024
1 parent 93e4b78 commit 64bc4c5
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- name: Build Vector
run: make package-x86_64-unknown-linux-musl-all
- name: Stage package artifacts for publish
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: vector-${{ env.VECTOR_VERSION }}-x86_64-unknown-linux-musl
path: target/artifacts/vector*
Expand All @@ -90,7 +90,7 @@ jobs:
- name: Build Vector
run: make package-x86_64-unknown-linux-gnu-all
- name: Stage package artifacts for publish
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: vector-${{ env.VECTOR_VERSION }}-x86_64-unknown-linux-gnu
path: target/artifacts/vector*
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
DOCKER_PRIVILEGED: "true"
run: make package-aarch64-unknown-linux-musl-all
- name: Stage package artifacts for publish
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: vector-${{ env.VECTOR_VERSION }}-aarch64-unknown-linux-musl
path: target/artifacts/vector*
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
DOCKER_PRIVILEGED: "true"
run: make package-aarch64-unknown-linux-gnu-all
- name: Stage package artifacts for publish
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: vector-${{ env.VECTOR_VERSION }}-aarch64-unknown-linux-gnu
path: target/artifacts/vector*
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
DOCKER_PRIVILEGED: "true"
run: make package-armv7-unknown-linux-gnueabihf-all
- name: Stage package artifacts for publish
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: vector-${{ env.VECTOR_VERSION }}-armv7-unknown-linux-gnueabihf
path: target/artifacts/vector*
Expand Down Expand Up @@ -202,7 +202,7 @@ jobs:
DOCKER_PRIVILEGED: "true"
run: make package-armv7-unknown-linux-musleabihf
- name: Stage package artifacts for publish
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: vector-${{ env.VECTOR_VERSION }}-armv7-unknown-linux-musleabihf
path: target/artifacts/vector*
Expand Down Expand Up @@ -230,7 +230,7 @@ jobs:
DOCKER_PRIVILEGED: "true"
run: make package-arm-unknown-linux-gnueabi-all
- name: Stage package artifacts for publish
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: vector-${{ env.VECTOR_VERSION }}-arm-unknown-linux-gnueabi
path: target/artifacts/vector*
Expand All @@ -257,7 +257,7 @@ jobs:
DOCKER_PRIVILEGED: "true"
run: make package-arm-unknown-linux-musleabi
- name: Stage package artifacts for publish
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: vector-${{ env.VECTOR_VERSION }}-arm-unknown-linux-musleabi
path: target/artifacts/vector*
Expand Down Expand Up @@ -286,7 +286,7 @@ jobs:
export PATH="$HOME/.cargo/bin:$PATH"
make package
- name: Stage package artifacts for publish
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: vector-${{ env.VECTOR_VERSION }}-x86_64-apple-darwin
path: target/artifacts/vector*
Expand Down Expand Up @@ -333,7 +333,7 @@ jobs:
export PATH="/c/wix:$PATH"
./scripts/package-msi.sh
- name: Stage package artifacts for publish
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: vector-${{ env.VECTOR_VERSION }}-x86_64-pc-windows-msvc
path: target/artifacts/vector*
Expand Down Expand Up @@ -826,7 +826,7 @@ jobs:
- name: Generate SHA256 checksums for artifacts
run: make sha256sum
- name: Stage checksum for publish
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: vector-${{ env.VECTOR_VERSION }}-SHA256SUMS
path: target/artifacts/vector-${{ env.VECTOR_VERSION }}-SHA256SUMS

0 comments on commit 64bc4c5

Please sign in to comment.