mirror of
https://github.com/glenndehaan/unifi-voucher-site.git
synced 2026-03-31 06:24:02 -04:00
47 lines
1.3 KiB
YAML
47 lines
1.3 KiB
YAML
# When the workflow succeeds the package will be published to docker hub
|
|
|
|
name: Publish Docker Image
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
tags:
|
|
- '*'
|
|
|
|
jobs:
|
|
docker:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- 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 DockerHub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
- name: Build and push
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: .
|
|
platforms: linux/amd64,linux/arm64
|
|
push: true
|
|
tags: glenndehaan/unifi-voucher-site:${{ github.ref_name }}
|
|
build-args: |
|
|
GIT_TAG=${{ github.ref_name }}
|
|
- name: Build and push (latest)
|
|
if: github.ref == 'refs/heads/master'
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: .
|
|
platforms: linux/amd64,linux/arm64
|
|
push: true
|
|
tags: glenndehaan/unifi-voucher-site:latest
|
|
build-args: |
|
|
GIT_TAG=master
|