Skip to content

chore(deps): update module github.com/cloudflare/cloudflare-go/cmd/fl… #94

chore(deps): update module github.com/cloudflare/cloudflare-go/cmd/fl…

chore(deps): update module github.com/cloudflare/cloudflare-go/cmd/fl… #94

Workflow file for this run

name: Docker Build
on: push
jobs:
build:
name: Build Image
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/clevyr/cloudflare-borgmatic
tags: |
type=raw,priority=1000,value=latest,enable=${{ github.ref_name == 'main' }}
type=ref,event=branch
type=sha
- name: Build and Push
id: docker_build
uses: docker/build-push-action@v5
with:
pull: true
push: ${{ github.ref_name == 'main' }}
platforms: linux/amd64,linux/arm64/v8
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max