2024-04-13 05:57:18 +08:00
|
|
|
name: Docker - Deploy
|
|
|
|
on:
|
|
|
|
workflow_call:
|
|
|
|
inputs:
|
|
|
|
docker_tags:
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
|
|
|
|
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 }}
|
|
|
|
run-id: ${{ github.event.workflow_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@5f4866a30a54f16a52d2ecb4a3898e9e424939cf
|
|
|
|
with:
|
|
|
|
registry: ${{ env.REGISTRY }}
|
|
|
|
username: ${{ github.actor }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: Extract metadata (tags, labels) for Docker
|
|
|
|
id: meta
|
2024-04-15 15:23:12 +08:00
|
|
|
uses: docker/metadata-action@1294d94f8ee362ab42b6da04c35f4cd03a0e6af7
|
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@d70bba72b1f3fd22344832f00baa16ece964efeb
|
|
|
|
|
|
|
|
- name: Build and push Docker image
|
|
|
|
uses: docker/build-push-action@f8bc7f46003ef0cf98b715743d86c2f1ccd01436
|
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
push: true
|
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|