Skip to content

2024.7.2

2024.7.2 #13

Workflow file for this run

name: Release
on:
release:
types:
- published
jobs:
build:
name: Build image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.7
- name: Login to GitHub Container Registry
uses: docker/login-action@v3.2.0
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6.3.0
with:
context: .
push: true
tags: "ghcr.io/${{ github.repository_owner }}/private-demo:${{ github.event.release.tag_name }}"