Browse Source

add temporary workflow for explicit docker release on ghcr.io

pull/154/head^2
Philipp Dormann 4 years ago
parent
commit
f7369e7e8f
No known key found for this signature in database GPG Key ID: 3BB9ADD52DCA4314
  1. 10
      .github/workflows/docker-image-tag.yml

10
.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 }}
${{ 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 }}
Loading…
Cancel
Save