From c40bddfdf39a61545700ecb8123a02abd24a4f8f Mon Sep 17 00:00:00 2001 From: Marco Ceppi Date: Mon, 27 Feb 2023 23:59:05 -0500 Subject: [PATCH] fix: restore download artifact step, support multi-line tags (#90) --- .github/workflows/pr-publish.yml | 29 ++++++++++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr-publish.yml b/.github/workflows/pr-publish.yml index f84f0d0..69dc7d5 100644 --- a/.github/workflows/pr-publish.yml +++ b/.github/workflows/pr-publish.yml @@ -17,9 +17,27 @@ jobs: github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' steps: - - uses: actions/download-artifact@v3 + - name: 'Download artifact' + uses: actions/github-script@v3.1.0 with: - name: output + script: | + var artifacts = await github.actions.listWorkflowRunArtifacts({ + owner: context.repo.owner, + repo: context.repo.repo, + run_id: ${{github.event.workflow_run.id }}, + }); + var matchArtifact = artifacts.data.artifacts.filter((artifact) => { + return artifact.name == "output" + })[0]; + var download = await github.actions.downloadArtifact({ + owner: context.repo.owner, + repo: context.repo.repo, + artifact_id: matchArtifact.id, + archive_format: 'zip', + }); + var fs = require('fs'); + fs.writeFileSync('${{github.workspace}}/output.zip', Buffer.from(download.data)); + - run: unzip output.zip - name: Load Container Image id: load_image @@ -29,7 +47,12 @@ jobs: cat tags podman load -i image.tar echo image="$(cat image)" >> $GITHUB_OUTPUT - echo tags="$(cat tags)" >> $GITHUB_OUTPUT + delimiter="$(openssl rand -hex 8)" + { + echo "tags<<${delimiter}" + cat tags + echo "${delimiter}" + } >> $GITHUB_OUTPUT - name: Lowercase Registry id: registry_case