mirror of
https://github.com/vector-im/element-call.git
synced 2024-11-21 00:28:08 +08:00
61 lines
1.7 KiB
YAML
61 lines
1.7 KiB
YAML
name: Docker - Deploy
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
docker_tags:
|
|
required: true
|
|
type: string
|
|
artifact_run_id:
|
|
required: false
|
|
type: string
|
|
default: ${{ github.run_id }}
|
|
|
|
env:
|
|
REGISTRY: ghcr.io
|
|
IMAGE_NAME: ${{ github.repository }}
|
|
|
|
jobs:
|
|
build_and_deploy:
|
|
name: Build & publish docker
|
|
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:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
run-id: ${{ inputs.artifact_run_id }}
|
|
name: build-output
|
|
path: dist
|
|
|
|
- name: Log in to container registry
|
|
uses: docker/login-action@7840e6ddd4a9223910798f6a315544257fccd96e
|
|
with:
|
|
registry: ${{ env.REGISTRY }}
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Extract metadata (tags, labels) for Docker
|
|
id: meta
|
|
uses: docker/metadata-action@f7b4ed12385588c3f9bc252f0a2b520d83b52d48
|
|
with:
|
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
|
tags: ${{ inputs.docker_tags}}
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@be3701b2116d2f723573ca9e8cdb4ca85d3cdaf0
|
|
|
|
- name: Build and push Docker image
|
|
uses: docker/build-push-action@df19a799eba09c72273c5a94c70800e243e76ebc
|
|
with:
|
|
context: .
|
|
platforms: linux/amd64,linux/arm64
|
|
push: true
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|