mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-10 07:02:57 +03:00
51 lines
1.3 KiB
YAML
51 lines
1.3 KiB
YAML
name: Build and Push Docker Image
|
||
|
||
on:
|
||
release:
|
||
types: [published]
|
||
|
||
jobs:
|
||
build:
|
||
runs-on: ubuntu-22.04 # Using an older version because of https://github.com/actions/runner-images/issues/11471
|
||
permissions:
|
||
contents: read
|
||
packages: write
|
||
steps:
|
||
- name: checkout code
|
||
uses: actions/checkout@v3
|
||
|
||
- name: Docker metadata
|
||
id: meta
|
||
uses: docker/metadata-action@v5
|
||
with:
|
||
images: |
|
||
ghcr.io/${{ github.repository }}
|
||
tags: |
|
||
type=semver,pattern={{version}},prefix=v
|
||
type=semver,pattern={{major}}.{{minor}},prefix=v
|
||
|
||
- 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@v4
|
||
with:
|
||
context: .
|
||
platforms: linux/amd64,linux/arm64
|
||
push: true
|
||
tags: ${{ steps.meta.outputs.tags }}
|
||
labels: ${{ steps.meta.outputs.labels }}
|
||
cache-from: type=gha
|
||
cache-to: type=gha,mode=max
|