aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2024-03-03 18:43:24 -0500
committerJoshua M. Boniface <joshua@boniface.me>2024-03-03 18:43:24 -0500
commit4aae195f88c15614879227c5af1d663687490f30 (patch)
tree32fff57e94d6959402ec1ed83427d71b9d9c5740 /.github
parentFix invalid tests (/bin/sh) (diff)
downloadjellyfin-packaging-4aae195f88c15614879227c5af1d663687490f30.tar.gz
jellyfin-packaging-4aae195f88c15614879227c5af1d663687490f30.tar.bz2
jellyfin-packaging-4aae195f88c15614879227c5af1d663687490f30.zip
Fix incorrect token
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release-build.yaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/release-build.yaml b/.github/workflows/release-build.yaml
index 42a1518..b58310a 100644
--- a/.github/workflows/release-build.yaml
+++ b/.github/workflows/release-build.yaml
@@ -43,7 +43,7 @@ jobs:
with:
registry: docker.io
username: ${{ secrets.DOCKER_USERNAME }}
- password: ${{ secrets.DOCKER_PASSWORD }}
+ password: ${{ secrets.DOCKER_TOKEN }}
- name: "Log in to the GHCR Container registry"
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
bgstack15