Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/promote.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
release:
types: [released] # this release event activity type excludes prereleases

permissions:
contents: write # allow updating the major version and "latest" Git tags

env:
REGISTRY: docker.io
# repo only - no registry, no tag
Expand Down Expand Up @@ -37,6 +40,11 @@ jobs:
username: ${{ vars.DOCKER_HUB_API_USER || secrets.DOCKER_HUB_API_USER }}
password: ${{ secrets.DOCKER_HUB_API_TOKEN }}

- uses: Actions-R-Us/actions-tagger@v2
with:
publish_latest_tag: false
prefer_branch_releases: false

# Extract metadata (tags, labels) for Docker
# https://github.com/docker/metadata-action
- name: Define Docker Tags
Expand Down
Loading