element-call-Github/.github/workflows/docker.yaml

61 lines
1.7 KiB
YAML
Raw Normal View History

2024-04-13 05:57:18 +08:00
name: Docker - Deploy
on:
workflow_call:
inputs:
docker_tags:
required: true
type: string
2024-04-23 22:46:26 +08:00
artifact_run_id:
required: false
type: string
default: ${{ github.run_id }}
2024-04-13 05:57:18 +08:00
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build_and_deploy:
2024-04-15 16:57:30 +08:00
name: Build & publish docker
2024-04-13 05:57:18 +08:00
runs-on: ubuntu-latest
permissions:
contents: write # required to upload release asset
packages: write
steps:
- name: Check it out
uses: actions/checkout@v4
- name: 📥 Download artifact
uses: actions/download-artifact@v4
with:
2024-04-13 06:05:21 +08:00
github-token: ${{ secrets.GITHUB_TOKEN }}
2024-04-23 22:46:26 +08:00
run-id: ${{ inputs.artifact_run_id }}
2024-04-13 05:57:18 +08:00
name: build-output
path: dist
- name: Log in to container registry
uses: docker/login-action@7840e6ddd4a9223910798f6a315544257fccd96e
2024-04-13 05:57:18 +08:00
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@2ee3d3070bb41b40bf7305d15233321e12c1dc5c
2024-04-13 05:57:18 +08:00
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
2024-04-13 06:02:11 +08:00
tags: ${{ inputs.docker_tags}}
2024-04-13 05:57:18 +08:00
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@be3701b2116d2f723573ca9e8cdb4ca85d3cdaf0
2024-04-13 05:57:18 +08:00
- name: Build and push Docker image
uses: docker/build-push-action@df19a799eba09c72273c5a94c70800e243e76ebc
2024-04-13 05:57:18 +08:00
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}