Skip to content

Merge pull request #430 from vlakoff/DownloadAvatarHeader #9

Merge pull request #430 from vlakoff/DownloadAvatarHeader

Merge pull request #430 from vlakoff/DownloadAvatarHeader #9

Workflow file for this run

name: Publish Docker image
on:
push:
tags:
- 'OFDLV*'
jobs:
push_to_registry:
name: Push docker image to registry
runs-on: ubuntu-latest
steps:
- name: Extract version
id: version
run: |
VERSION="${GITHUB_REF_NAME#OFDLV}"
echo "Version: $VERSION"
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to ghcr
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: |
ghcr.io/${{ github.actor }}/of-dl:latest
ghcr.io/${{ github.actor }}/of-dl:${{ steps.version.outputs.version }}