Skip to content

Commit 68008a3

Browse files
committed
small cleanup
1 parent e567cc8 commit 68008a3

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,6 @@ jobs:
496496
- build-apple-darwin-packages
497497
env:
498498
VECTOR_VERSION: ${{ needs.generate-publish-metadata.outputs.vector_version }}
499-
ARTIFACTS_PATH: ${{ needs.download-artifacts.outputs.artifacts-path }}
500499
strategy:
501500
matrix:
502501
include:
@@ -511,7 +510,7 @@ jobs:
511510
ref: ${{ inputs.git_ref }}
512511
- name: Verify macOS package
513512
run: |
514-
MACOS_PACKAGE_PATH="${ARTIFACTS_PATH}/vector-${VECTOR_VERSION}-${{ matrix.target }}.tar.gz"
513+
MACOS_PACKAGE_PATH="${{ needs.download-artifacts.outputs.artifacts-path }}/vector-${VECTOR_VERSION}-${{ matrix.target }}.tar.gz"
515514
echo "Verifying macOS package at: $MACOS_PACKAGE_PATH"
516515
tar -xvf "$MACOS_PACKAGE_PATH" && vector-${{ matrix.target }}/bin/vector --version
517516
@@ -553,7 +552,6 @@ jobs:
553552
- name: Build and publish Docker images
554553
env:
555554
PLATFORM: "linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6"
556-
ARTIFACTS_PATH: ${{ env.ARTIFACTS_PATH }}
557555
uses: nick-fields/retry@v3
558556
with:
559557
timeout_minutes: 15
@@ -586,7 +584,6 @@ jobs:
586584
AWS_SECRET_ACCESS_KEY: ${{ secrets.CI_AWS_SECRET_ACCESS_KEY }}
587585
run: make release-s3
588586

589-
590587
publish-github:
591588
name: Publish to GitHub
592589
# We only publish to GitHub for versioned releases, not nightlies.
@@ -614,7 +611,6 @@ jobs:
614611
- name: Publish release to GitHub
615612
env:
616613
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
617-
ARTIFACTS_PATH: ${{ env.ARTIFACTS_PATH }}
618614
run: make release-github
619615

620616

0 commit comments

Comments
 (0)