diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 104ae90..99ef4d4 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -26,8 +26,8 @@ jobs: - uses: docker/login-action@v4 with: registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} + username: TheDancingDeveloper + password: ${{ secrets.GHCR_TOKEN }} - name: Define immutable destination tag id: tags shell: bash @@ -36,7 +36,6 @@ jobs: case "$GITHUB_REF_NAME" in v[0-9]*) ;; *) exit 1 ;; esac printf 'tags=%s\n' "$IMAGE:$GITHUB_REF_NAME,$IMAGE:latest,$IMAGE:sha-$GITHUB_SHA" >> "$GITHUB_OUTPUT" else - test "$GITHUB_REF_NAME" = main printf 'tags=%s\n' "$IMAGE:dev,$IMAGE:sha-$GITHUB_SHA" >> "$GITHUB_OUTPUT" fi - name: Build and publish destination image once diff --git a/Dockerfile b/Dockerfile index 2957a8e..1bc375b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -69,7 +69,7 @@ ARG INDEXARR_BUILD_REVISION=unknown LABEL org.opencontainers.image.title="Indexarr" \ org.opencontainers.image.description="Decentralized torrent indexing with DHT crawling, content classification, and P2P sync" \ - org.opencontainers.image.source="https://github.com/AusAgentSmith-org/indexarr-rs" \ + org.opencontainers.image.source="https://github.com/TheDancingDeveloper-org/indexarr-rs" \ org.opencontainers.image.licenses="AGPL-3.0-only" \ org.opencontainers.image.version="$INDEXARR_BUILD_REF" \ org.opencontainers.image.revision="$INDEXARR_BUILD_REVISION"