Merge pull request #365 from Bubbelb/master #138
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: 'Build Docker Images :latest' | |
on: | |
push: | |
branches: [ master ] | |
# pull_request: | |
# branches: [ $default-branch ] | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Prepare Base Build Metadata | DockerHub | |
id: meta_base_dockerhub | |
uses: docker/metadata-action@v5 | |
with: | |
images: | | |
${{ secrets.DOCKER_USERNAME }}/borgmatic | |
tags: | | |
type=ref,event=branch | |
type=raw,value=latest,enable={{is_default_branch}} | |
- name: Prepare Base Build Metadata | GHCR | |
id: meta_base_ghcr | |
uses: docker/metadata-action@v5 | |
with: | |
images: | | |
ghcr.io/borgmatic-collective/borgmatic | |
tags: | | |
type=ref,event=branch | |
type=raw,value=latest,enable={{is_default_branch}} | |
- 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@v3 | |
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@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build base | |
uses: docker/build-push-action@v6 | |
with: | |
builder: ${{ steps.buildx.outputs.name }} | |
context: ./ | |
file: ./Dockerfile | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: | | |
${{ steps.meta_base_dockerhub.outputs.tags }} | |
${{ steps.meta_base_ghcr.outputs.tags }} |