30 lines
659 B
YAML
30 lines
659 B
YAML
name: Check XControl Image Ready
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
tag:
|
|
required: false
|
|
default: latest
|
|
|
|
permissions:
|
|
contents: read
|
|
packages: read
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Authenticate to GHCR
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Check images exist and are pullable
|
|
env:
|
|
TAG: ${{ inputs.tag }}
|
|
IMAGE_LIST_FILE: .github/scripts/check-image/images.txt
|
|
run: bash .github/scripts/check-image/check-images.sh
|