diff --git a/.github/workflows/docker-image-tag.yml b/.github/workflows/docker-image-tag.yml index a55587fb3..3ec7e9976 100644 --- a/.github/workflows/docker-image-tag.yml +++ b/.github/workflows/docker-image-tag.yml @@ -29,4 +29,12 @@ jobs: # The desired tag for the image: latest + . Defaults to current branch or release version number. tags: | latest - ${{ github.sha }} \ No newline at end of file + ${{ github.sha }} + - name: Build and push ghcr explicit release tag + uses: mr-smithers-excellent/docker-build-push@v5 + with: + image: philippdormann/uptime + tags: nightly + registry: ghcr.io + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.GHCR_TOKEN }} \ No newline at end of file