Skip to content

fix: correct docker metadata tagging #24

fix: correct docker metadata tagging

fix: correct docker metadata tagging #24

Workflow file for this run

name: Docker Image CI
on:
push:
branches:
- "main"
- "performance-stability-optimization"
tags: [ "*.*.*.*" ]
pull_request:
branches:
- "main"
- "performance-stability-optimization"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Docker meta
id: meta_univpn # you'll use this in the next step
uses: docker/metadata-action@v5
with:
# list of Docker images to use as base name for tags
images: |
triatk/univpn
# Docker tags based on the following events/attributes
tags: |
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/main' }}
type=raw,value=nightly,enable=${{ github.ref != 'refs/heads/main' }}
type=schedule
type=ref,event=branch
type=ref,event=pr
type=pep440,pattern={{version}}
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=sha
-
name: Build and push
id: docker_build
uses: docker/build-push-action@v6
with:
push: true
platforms: linux/amd64
tags: ${{ steps.meta_univpn.outputs.tags }}
labels: ${{ steps.meta_univpn.outputs.labels }}