Skip to content

Docker Release

Docker Release #65

name: Docker Release
on:
workflow_dispatch:
inputs:
bundle:
description: "Bundle ID (link / next etc.)"
required: true
default: "next"
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
docker:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
env:
MIX_ENV: prod
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Tag name
id: tag
run: echo ::set-output "name=TAG::$(date +%F)_${{github.run_number}}"
- name: Log in to the Container registry
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@31cebacef4805868f9ce9a0cb03ee36c32df2ac4
with:
images: |
${{env.REGISTRY}}/eyra/${{github.event.inputs.bundle}}
tags: |
type=raw,value=${{steps.tag.outputs.tag}}
type=raw,value=latest
# type=raw,value=latest,enable={{is_default_branch}}
- name: Build and push Docker image
uses: docker/build-push-action@4a13e500e55cf31b7a5d59a38ab2040ab0f42f56
with:
context: core
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
BUNDLE=${{github.event.inputs.bundle}}
VERSION=${{steps.tag.outputs.tag}}