aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2024-03-03 17:02:15 -0500
committerJoshua M. Boniface <joshua@boniface.me>2024-03-03 17:02:15 -0500
commiteb9acec3bc8f33e2deb049f5b65991f00caefe2f (patch)
treedbaebcc2b4e044f1a0db614195abe7f1d28c5385 /.github/workflows
parentAdd flushing log function (diff)
downloadjellyfin-packaging-eb9acec3bc8f33e2deb049f5b65991f00caefe2f.tar.gz
jellyfin-packaging-eb9acec3bc8f33e2deb049f5b65991f00caefe2f.tar.bz2
jellyfin-packaging-eb9acec3bc8f33e2deb049f5b65991f00caefe2f.zip
Attempt to fix bad docker login
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/release-build.yaml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/release-build.yaml b/.github/workflows/release-build.yaml
index c7153f0..3fc0896 100644
--- a/.github/workflows/release-build.yaml
+++ b/.github/workflows/release-build.yaml
@@ -39,8 +39,9 @@ jobs:
./checkout.py ${{ inputs.version }}
- name: "Log in to Docker Hub"
- uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
+ uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with:
+ registry: docker.io
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
bgstack15