Skip to content

Commit 0573344

Browse files
authored
fix:[IDE-1709] Another attempt at fixing (#552)
1 parent 2d774db commit 0573344

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/actions/publish/action.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,11 @@ runs:
5454
-f /dev/null
5555
)"
5656
echo "CONTAINER_ID=$CONTAINER_ID" >> "$GITHUB_ENV"
57+
- name: Logout of Docker
58+
shell: bash
59+
run: |
60+
docker logout ghcr.io
61+
docker logout docker.io
5762
- name: Run Goreleaser
5863
shell: bash
5964
run: docker exec
@@ -64,7 +69,7 @@ runs:
6469
--workdir "$PWD"
6570
--tty
6671
"$CONTAINER_ID"
67-
goreleaser release
72+
goreleaser release
6873
${{ inputs.dry-run == 'true' && '--skip=publish' || '' }}
6974
${{ inputs.snapshot == 'true' && '--snapshot' || '' }}
7075
${{ inputs.skip == '' && '' || format('--skip={0}', inputs.skip) }}

0 commit comments

Comments
 (0)