Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
jbigot committed Dec 2, 2024
1 parent 91eac65 commit b8d16bf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/actions/deploy/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ runs:
- name: Make artifact descriptor container
env:
DISTRIB: ${{ inputs.distribution }}
ARTIFACT: ${{ steps.artifact.output.artifact-url }}
OUTPUT: ${{ steps.artifact.output.artifact-url }}
ARTIFACT: ${{ steps.artifact.outputs.artifact-url }}
OUTPUT: ${{ steps.artifact.outputs.artifact-url }}
shell: bash
run: |
echo artifact-url: "${{ steps.artifact.output.artifact-url }}"
echo artifact-url: "${{ steps.artifact.outputs.artifact-url }}"
echo ARTIFACT: "${ARTIFACT}"
echo artifact.output: "${{ steps.artifact.output }}"
echo artifact.output: "${{ steps.artifact.outputs }}"
echo OUTPUT: "${OUTPUT}"
echo "${ARTIFACT}" > artifact.url
tar -c artifact.url | docker import - ghcr.io/pdidev/pkgs/lastbuild:${DISTRIB}
Expand Down

0 comments on commit b8d16bf

Please sign in to comment.