This repository has been archived by the owner on Oct 11, 2024. It is now read-only.
Bump docker/build-push-action from 5 to 6 (#37) #84
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 Latest | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- stable/** | |
- .github/workflows/build-latest.yml | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
name: Set up dynamic build ARGs | |
id: getargs | |
run: echo "version=$(cat ./stable/VERSION)" >> $GITHUB_OUTPUT | |
- | |
name: Set up Docker metadata for Alpine | |
id: meta-alpine | |
uses: docker/metadata-action@v5 | |
with: | |
images: | | |
${{ github.repository }} | |
ghcr.io/${{ github.repository }} | |
tags: | | |
type=raw,latest | |
# type=raw,${{ steps.getargs.outputs.version }} | |
labels: | | |
org.opencontainers.image.vendor=The Goofball - [email protected] | |
org.opencontainers.image.title=Pritunl Server | |
org.opencontainers.image.description=Pritunl Server | |
org.opencontainers.image.version=${{ steps.getargs.outputs.version }} | |
- | |
name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- | |
name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- | |
name: Login to GHCR | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- | |
name: Build and push Alpine Docker image | |
uses: docker/build-push-action@v6 | |
with: | |
context: ./stable | |
file: ./stable/Dockerfile | |
platforms: linux/amd64,linux/arm64 | |
# platforms: linux/amd64 | |
push: ${{ github.event_name != 'pull_request' }} | |
tags: ${{ steps.meta-alpine.outputs.tags }} | |
labels: ${{ steps.meta-alpine.outputs.labels }} | |
build-args: VERSION=${{ steps.getargs.outputs.version }} |