From f37c4cc7edcb0cae0008734b687aa8d14aca7562 Mon Sep 17 00:00:00 2001 From: Daniel Sukoneck Date: Tue, 3 Dec 2024 18:12:34 -0700 Subject: [PATCH] fix version interpolation --- .github/workflows/release.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5308982ed..33052cb12 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -62,8 +62,6 @@ jobs: runs-on: ${{ matrix.configs.runner }} container: image: ubuntu:22.04 - env: - VERSION: ${{ needs.extract-version.outputs.VERSION }} permissions: contents: write packages: write @@ -106,13 +104,13 @@ jobs: - name: Upload rbuilder artifact uses: actions/upload-artifact@v4 with: - name: rbuilder-${VERSION}-${{ matrix.configs.target }}${{ matrix.features && '-' }}${{ matrix.features }} + name: rbuilder-${{ needs.extract-version.outputs.VERSION }}-${{ matrix.configs.target }}${{ matrix.features && '-' }}${{ matrix.features }} path: target/${{ matrix.configs.target }}/release/rbuilder - name: Upload reth-rbuilder artifact uses: actions/upload-artifact@v4 with: - name: reth-rbuilder-${VERSION}-${{ matrix.configs.target }}${{ matrix.features && '-' }}${{ matrix.features }} + name: reth-rbuilder-${{ needs.extract-version.outputs.VERSION }}-${{ matrix.configs.target }}${{ matrix.features && '-' }}${{ matrix.features }} path: target/${{ matrix.configs.target }}/release/reth-rbuilder draft-release: