Skip to content

build(docker): bump rclone from 1.65.0 to 1.65.1 #16

build(docker): bump rclone from 1.65.0 to 1.65.1

build(docker): bump rclone from 1.65.0 to 1.65.1 #16

Workflow file for this run

name: deploy
on:
push:
tags:
- '*'
jobs:
docker:
name: Build and push Docker image
runs-on: ubuntu-latest
outputs:
meta: ${{ steps.meta.outputs.json }}
steps:
-
name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository_owner }}/putcallback
flavor: |
latest=auto
prefix=
suffix=
tags: |
type=semver,pattern={{raw}},priority=1100
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v5
with:
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max