docker-borgmatic/.github/workflows/build_new_version.yml

77 wiersze
2.2 KiB
YAML
Czysty Zwykły widok Historia

2021-05-27 08:10:56 +00:00
---
2022-05-30 09:22:30 +00:00
name: 'Build Docker Images :$version'
2021-05-27 08:10:56 +00:00
on:
push:
tags:
2022-06-01 05:02:37 +00:00
- '*'
2021-05-27 08:10:56 +00:00
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
2021-05-27 08:10:56 +00:00
- name: Prepare Base Build Metadata | DockerHub
id: meta_base_dockerhub
uses: docker/metadata-action@v4
with:
images: |
${{ secrets.DOCKER_USERNAME }}/borgmatic
tags: |
type=ref,event=branch
type=ref,event=pr
# latest tag is applied automatically for semver type in auto mode
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
2021-05-27 08:10:56 +00:00
- name: Prepare Base Build Metadata | GHCR
id: meta_base_ghcr
uses: docker/metadata-action@v4
with:
images: |
2022-06-10 22:02:37 +00:00
ghcr.io/borgmatic-collective/borgmatic
tags: |
type=ref,event=branch
type=ref,event=pr
# latest tag is applied automatically for semver type in auto mode
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
2021-05-27 08:10:56 +00:00
- name: Set up QEMU
uses: docker/setup-qemu-action@master
with:
platforms: all
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@master
- name: Login to DockerHub
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
2021-05-27 08:10:56 +00:00
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Login to GitHub Container Registry
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
2022-06-01 09:29:24 +00:00
- name: Build base
uses: docker/build-push-action@v4
2021-05-27 08:10:56 +00:00
with:
builder: ${{ steps.buildx.outputs.name }}
context: ./
file: ./Dockerfile
2023-03-05 12:47:32 +00:00
platforms: linux/amd64,linux/arm64
2021-05-27 08:10:56 +00:00
push: true
tags: |
${{ steps.meta_base_dockerhub.outputs.tags }}
${{ steps.meta_base_ghcr.outputs.tags }}