Skip to content

fix: run workflow if definition is changed (#19) #16

fix: run workflow if definition is changed (#19)

fix: run workflow if definition is changed (#19) #16

---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: "Container: Image Build"
on:
workflow_dispatch: {}
pull_request:
branches: ["main"]
types: ["opened", "synchronize", "reopened"]
push:
branches:
- main
paths:
- .github/workflows/publish-image.yaml
- "Docker/**/*"
env:
# renovate: datasource=go depName=tailscale.com
UPSTREAM_TS_VERSION: v1.68.1
jobs:
publish-images:
name: Publish Image
permissions:
contents: write
packages: write
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}
labels: |
org.opencontainers.image.source="https://github.com/tailscale/tailscale"
tags: |
type=ref,event=branch
type=ref,event=pr
type=schedule
type=raw,value=latest,enable={{is_default_branch}}
type=raw,value=${{ env.UPSTREAM_TS_VERSION }}
- name: Set up QEMU
uses: docker/[email protected]
- name: Set up Docker Buildx
uses: docker/[email protected]
- name: Log into registry ghcr.io
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
id: build-and-push
uses: docker/[email protected]
with:
push: ${{ github.event_name != 'pull_request' }}
context: ./
file: ./Docker/Dockerfile
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64,linux/arm64
build-args: |
VERSION=${{ env.UPSTREAM_TS_VERSION }}
tags: ${{ steps.meta.outputs.tags }}