46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
name: release-image
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 0.*
|
|
|
|
env:
|
|
REGISTRY: ghcr.io
|
|
IMAGE_NAME: ${{ github.repository }}
|
|
|
|
jobs:
|
|
release-image:
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Log into the container registry
|
|
uses: docker/login-action@7ca345011ac4304463197fac0e56eab1bc7e6af0
|
|
with:
|
|
registry: ${{ env.REGISTRY }}
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Extract metadata for Docker
|
|
id: meta
|
|
uses: docker/metadata-action@70b2cdc6480c1a8b86edf1777157f8f437de2166
|
|
with:
|
|
tags: |
|
|
type=ref,event=branch
|
|
type=ref,event=tag
|
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
|
|
|
- name: Build and push Docker image
|
|
uses: docker/build-push-action@7e094594beda23fc8f21fa31049f4b203e51096b
|
|
with:
|
|
context: .
|
|
push: true
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
file: ./Dockerfile
|