aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2024-03-03 21:12:22 -0500
committerJoshua M. Boniface <joshua@boniface.me>2024-03-03 21:12:22 -0500
commit7c5824fafb4660db296f65179806eeefff9cee77 (patch)
treef455f0932f7b3af1ef537ae0c8eb858643e6a260
parentMove pushes earlier (diff)
downloadjellyfin-packaging-7c5824fafb4660db296f65179806eeefff9cee77.tar.gz
jellyfin-packaging-7c5824fafb4660db296f65179806eeefff9cee77.tar.bz2
jellyfin-packaging-7c5824fafb4660db296f65179806eeefff9cee77.zip
Disable GHCR login for now
-rw-r--r--.github/workflows/release-build.yaml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/release-build.yaml b/.github/workflows/release-build.yaml
index b58310a..267dc18 100644
--- a/.github/workflows/release-build.yaml
+++ b/.github/workflows/release-build.yaml
@@ -45,12 +45,12 @@ jobs:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- - name: "Log in to the GHCR Container registry"
- uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
- with:
- registry: ghcr.io
- username: ${{ secrets.GHCR_USERNAME }}
- password: ${{ secrets.GHCR_TOKEN }}
+# - name: "Log in to the GHCR Container registry"
+# uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
+# with:
+# registry: ghcr.io
+# username: ${{ secrets.GHCR_USERNAME }}
+# password: ${{ secrets.GHCR_TOKEN }}
- name: "Run builder for Docker containers"
run: |-
bgstack15