Skip to content

Workflow file for this run

on:
workflow_dispatch:
inputs:
image_tag:
type: choice
description: ${{ github.repository }}:<image_tag>

Check failure on line 6 in .github/workflows/build.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yaml

Invalid workflow file

The workflow is not valid. .github/workflows/build.yaml (Line: 6, Col: 30): Unrecognized named-value: 'github'. Located at position 1 within expression: github.repository
options:
- develop
- release
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
permissions:
contents: read
packages: write
jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/build-push-action@v6
with:
platforms: linux/arm64
tags: ${{ github.repository }}:${{ github.event.inputs.image_tag }}
push: true