Skip to content

2024.8.0b1

2024.8.0b1 #17

Workflow file for this run

name: Release
on:
release:
types:
- published
jobs:
build:
name: Build image
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Login to GitHub Container Registry
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/[email protected]
with:
context: .
push: true
tags: "ghcr.io/${{ github.repository_owner }}/private-demo:${{ github.event.release.tag_name }}"