12345678910111213141516171819202122232425262728293031323334353637 |
- name: Docker
- on:
- workflow_dispatch:
- push:
- tags:
- - "v*"
- jobs:
- build:
- name: Build Docker image
- runs-on: ubuntu-latest
- permissions:
- contents: read
- packages: write
- steps:
- - uses: actions/checkout@v2
- - uses: docker/setup-qemu-action@v1
- - uses: docker/setup-buildx-action@v1
- - uses: docker/metadata-action@v3
- id: meta
- with:
- images: ghcr.io/${{ github.repository }}
- - uses: docker/login-action@v1
- with:
- registry: ghcr.io
- username: ${{ github.actor }}
- password: ${{ secrets.GITHUB_TOKEN }}
- - uses: docker/build-push-action@v2
- with:
- push: true
- context: .
- platforms: linux/amd64
- tags: ${{ steps.meta.outputs.tags }}
- labels: ${{ steps.meta.outputs.labels }}
- cache-to: type=gha,mode=max
- cache-from: type=gha
|