File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 4343 - name : Fetch git tags
4444 run : git fetch --tags --force
4545
46+ - name : Docker Login
47+ uses : docker/login-action@v2
48+ with :
49+ registry : ghcr.io
50+ username : ${{ github.repository_owner }}
51+ password : ${{ secrets.GITHUB_TOKEN }}
52+
4653 - uses : actions/setup-go@v3
4754 with :
4855 go-version : " ~1.18"
@@ -242,13 +249,6 @@ jobs:
242249 - name : Fetch git tags
243250 run : git fetch --tags --force
244251
245- - name : Docker Login
246- uses : docker/login-action@v2
247- with :
248- registry : ghcr.io
249- username : ${{ github.repository_owner }}
250- password : ${{ secrets.GITHUB_TOKEN }}
251-
252252 - name : mkdir artifacts
253253 run : mkdir artifacts
254254
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ rm -rf "$temp_dir"
109109
110110if [[ " $push " == 1 ]]; then
111111 log " --- Pushing Docker image for $arch ($image_tag )"
112- docker push " $image_tag "
112+ docker push " $image_tag " 1>&2
113113fi
114114
115115echo " $image_tag "
You can’t perform that action at this time.
0 commit comments