A discord bot for teal.fm
discord tealfm music

more ci debugging

besaid.zone 1e09792b bc3945d0

verified
Changed files
+7 -6
.tangled
workflows
+7 -4
.tangled/workflows/docker-atcr.yml
··· 14 command: | 15 VCS_REF=$(git rev-parse HEAD) 16 BUILD_DATE=$(date -u +%Y-%m-%dT%H:%M:%SZ) 17 - VERSION=$(git describe --tags --abbrev=0 origin/main) 18 19 - echo $VCS_REF 20 - echo $BUILD_DATE 21 - echo $VERSION 22 23 exit 1
··· 14 command: | 15 VCS_REF=$(git rev-parse HEAD) 16 BUILD_DATE=$(date -u +%Y-%m-%dT%H:%M:%SZ) 17 + 18 + git remote -v || true 19 + 20 + # If shallow, unshallow. If not shallow, this is harmless. 21 + git fetch --prune --unshallow 2>/dev/null || true 22 23 + # Fetch full tag refs explicitly 24 + git fetch --prune --tags --force origin 'refs/tags/*:refs/tags/*' 25 26 exit 1
-2
Dockerfile
··· 4 RUN corepack enable 5 USER 1000 6 7 - ARG VERSION 8 ARG BUILD_DATE 9 ARG SHA 10 ··· 48 org.opencontainers.image.title="discostu" \ 49 org.opencontainers.image.description="A discord bot that displays your music listens based on your teal.fm records" \ 50 org.opencontainers.image.created=$BUILD_DATE \ 51 - org.opencontainers.image.version=$VERSION \ 52 org.opencontainers.image.revision=$SHA \ 53 org.opencontainers.image.licenses="MIT"
··· 4 RUN corepack enable 5 USER 1000 6 7 ARG BUILD_DATE 8 ARG SHA 9 ··· 47 org.opencontainers.image.title="discostu" \ 48 org.opencontainers.image.description="A discord bot that displays your music listens based on your teal.fm records" \ 49 org.opencontainers.image.created=$BUILD_DATE \ 50 org.opencontainers.image.revision=$SHA \ 51 org.opencontainers.image.licenses="MIT"