Skip to content

Upgrade cloudflared to 2024.8.3 #222

Upgrade cloudflared to 2024.8.3

Upgrade cloudflared to 2024.8.3 #222

Workflow file for this run

name: docker-build
on:
push:
branches:
- main
jobs:
multi-arch-push:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Cache Docker layers
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
-
name: Login to GitHub Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Login to DockerHub
uses: docker/login-action@v3
with:
username: erisamoe
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Get Latest Tag
id: previoustag
uses: WyriHaximus/github-action-get-previous-tag@04e8485ecb6487243907e330d522ff60f02283ce # [email protected]
-
name: Build and push
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
platforms: linux/amd64,linux/386,linux/arm64,linux/arm/v7,linux/arm/v6,linux/s390x,linux/ppc64le,linux/riscv64
push: true
tags: |
erisamoe/cloudflared:latest
erisamoe/cloudflared:${{ steps.previoustag.outputs.tag }}
ghcr.io/erisa/cloudflared:latest
ghcr.io/erisa/cloudflared:${{ steps.previoustag.outputs.tag }}
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache