Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
zxcev committed Aug 19, 2024
1 parent e7c0d3b commit 9a25d52
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/actions/containerization/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ runs:
- name: download artifact
uses: actions/download-artifact@v4
with:
name: "${{ inputs.artifact-name }}"
name: ${{ inputs.artifact-name }}
path: ${{ inputs.artifact-build-path }}

- name: log in to dockerhub
Expand All @@ -29,6 +29,7 @@ runs:
username: ${{ inputs.dockerhub-username }}
password: ${{ inputs.dockerhub-token }}
- name: set docker image name with tag
shell: bash
run: |
ARTIFACT_WITH_TAG=$(echo ${{ inputs.artifact-name }} | sed 's/-/:/' )
ARTIFACT_WITH_TAG=${ARTIFACT_WITH_TAG%.*}
Expand Down

0 comments on commit 9a25d52

Please sign in to comment.