Skip to content

Commit 3df58e0

Browse files
authored
Add missing Docker login step (#106)
Signed-off-by: Reinhard Nägele <[email protected]>
1 parent 1614dc5 commit 3df58e0

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/release.yaml

+7
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,13 @@ jobs:
4747
git tag --annotate --message "Tag for release $tag" "$tag"
4848
git push origin "refs/tags/$tag"
4949
50+
- name: Login to registry
51+
uses: docker/login-action@v1
52+
with:
53+
registry: quay.io
54+
username: ${{ secrets.DOCKER_USERNAME }}
55+
password: ${{ secrets.DOCKER_PASSWORD }}
56+
5057
- name: Release
5158
run: mage -v release
5259
env:

0 commit comments

Comments
 (0)