Skip to content

Commit

Permalink
Merge pull request #36 from sebadob/justfile-ghcr-publish-fix
Browse files Browse the repository at this point in the history
justfile ghcr publish fix
  • Loading branch information
sebadob authored Aug 25, 2023
2 parents d550bdc + f02cff9 commit c392a40
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,7 @@ publish-nightly: build-sqlite build-postgres


# publishes the application images - full pipeline incl clippy and testing
#publish: build-sqlite build-postgres
publish:
publish: build-sqlite build-postgres
#!/usr/bin/env bash
set -euxo pipefail
Expand All @@ -231,7 +230,7 @@ publish:
# push both default images to ghcr as well
docker tag sdobedev/rauthy:$TAG ghcr.io/sebadob/rauthy:$TAG
docker push ghcr.io/sebadob/rauthy:$TAG
docker tag sdobedev/rauthy:$TAG ghcr.io/sebadob/rauthy:$TAG-lite
docker tag sdobedev/rauthy:$TAG-lite ghcr.io/sebadob/rauthy:$TAG-lite
docker push ghcr.io/sebadob/rauthy:$TAG-lite

# the `latest` image will always point to the postgres version, which is used more often
Expand Down

0 comments on commit c392a40

Please sign in to comment.