Skip to content
This repository has been archived by the owner on Jan 14, 2024. It is now read-only.

fix: restore download artifact step, support multi-line tags #90

Merged
merged 1 commit into from
Feb 28, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 26 additions & 3 deletions .github/workflows/pr-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
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
Expand All @@ -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
Expand Down