Bump version to 3.4.7 #82
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Docker image | |
on: | |
push: | |
tags: | |
- '**' | |
jobs: | |
push_to_registry: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Extract Tags | |
id: tags | |
run: | | |
IMAGE_VERSION="${GITHUB_REF/refs\/tags\//}" | |
TAGS="ghcr.io/inshur/fy:$IMAGE_VERSION" | |
echo "IMAGE_VERSION=${IMAGE_VERSION}" >> ${GITHUB_ENV} | |
echo "TAGS=${TAGS}" >> ${GITHUB_ENV} | |
echo $TAGS | |
echo ::set-output name=tags::${TAGS} | |
- name: Check out repo | |
uses: actions/checkout@v2 | |
- uses: docker/setup-buildx-action@v1 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GHCR_PAT }} | |
- name: Push to GitHub Packages | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
push: true | |
# failing to use a variable here for some reason: | |
# Error: buildx call failed with: invalid tag "${TAGS}": invalid reference format | |
#tags: inshur/fy:latest | |
tags: ${{ steps.tags.outputs.tags }} |