From f7369e7e8f6914f289441cb19734fc1550a09002 Mon Sep 17 00:00:00 2001 From: Philipp Dormann Date: Wed, 14 Jul 2021 23:56:05 +0200 Subject: [PATCH] add temporary workflow for explicit docker release on ghcr.io --- .github/workflows/docker-image-tag.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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