Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down