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
|
2024-10-09 18:02:22 +08:00
|
|
|
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
|
2024-04-13 05:57:18 +08:00
|
|
|
|
|
|
|
- name: 📥 Download artifact
|
2024-08-01 09:04:00 +08:00
|
|
|
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
|
2024-04-13 05:57:18 +08:00
|
|
|
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
|
2024-08-01 09:04:00 +08:00
|
|
|
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
|
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
|
2024-06-21 21:51:42 +08:00
|
|
|
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5.5.1
|
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
|
2024-10-07 19:22:19 +08:00
|
|
|
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1
|
2024-04-13 05:57:18 +08:00
|
|
|
|
|
|
|
- name: Build and push Docker image
|
2024-10-01 09:42:46 +08:00
|
|
|
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # v6.9.0
|
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 }}
|