From ca41c4cf0f86dcfdd391016be42d3cd8ed2d7e16 Mon Sep 17 00:00:00 2001 From: Casey Waldren Date: Thu, 8 Feb 2024 09:25:03 -0800 Subject: [PATCH] login to docker --- .github/actions/publish/action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/actions/publish/action.yml b/.github/actions/publish/action.yml index 26670271..795837e0 100644 --- a/.github/actions/publish/action.yml +++ b/.github/actions/publish/action.yml @@ -24,6 +24,10 @@ runs: - name: Git clean shell: bash run: git clean -f + - name: Login to Docker + shell: bash + run: | + echo $DOCKER_TOKEN | docker login --username $DOCKER_USERNAME --password-stdin - name: Run Goreleaser uses: goreleaser/goreleaser-action@v5 with: