From d4968a68c1633d2fa1af8538d8a47466c12b091f Mon Sep 17 00:00:00 2001 From: Henri Wahl <2835065+HenriWahl@users.noreply.github.com> Date: Sun, 21 Apr 2024 01:25:06 +0200 Subject: [PATCH] actions/download-artifact ${{ github.job }} --- .github/workflows/build-release-latest.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/build-release-latest.yml b/.github/workflows/build-release-latest.yml index c799365c..b680285a 100644 --- a/.github/workflows/build-release-latest.yml +++ b/.github/workflows/build-release-latest.yml @@ -317,6 +317,8 @@ jobs: - uses: actions/checkout@v4 # get binaries created by other jobs - uses: actions/download-artifact@v4 + with: + name: ${{ github.job }} # get secret signing key - run: echo "${{ secrets.PACKAGE_SIGNING_KEY }}" > signing_key.asc # organize SSH deploy key for nagstamon-jekyll repo @@ -359,6 +361,8 @@ jobs: steps: # get binaries created by other jobs - uses: actions/download-artifact@v4 + with: + name: ${{ github.job }} # organize SSH deploy key for nagstamon-repo - run: mkdir ~/.ssh - run: echo "${{ secrets.NAGSTAMON_REPO_KEY_WEB }}" > ~/.ssh/id_ed25519 @@ -392,6 +396,8 @@ jobs: steps: # get binaries created by other jobs - uses: actions/download-artifact@v4 + with: + name: ${{ github.job }} # organize SSH deploy key for nagstamon-repo - run: mkdir ~/.ssh - run: echo "${{ secrets.NAGSTAMON_REPO_KEY_WEB }}" > ~/.ssh/id_ed25519 @@ -418,6 +424,8 @@ jobs: needs: [repo-rpm-rhel] steps: - uses: actions/download-artifact@v4 + with: + name: ${{ github.job }} - run: cd artifact && md5sum *agstamon* > md5sums.txt - run: cd artifact && sha256sum *agstamon* > sha256sums.txt - uses: marvinpinto/action-automatic-releases@latest