Files
forgerunner/test/sample-workflows/docker-login.yml
T
Jason Stedwell 12e6135042
CI Smoke / toolchain (push) Successful in 1s
Publish v0.1.0 image; fix publish namespace and docker sample workflows
- publish-image.sh: add REGISTRY_NAMESPACE for Gitea Container Registry path
- sample workflows: run docker login/build/push on host label (bundled docker
  CLI + mounted socket); fix doubled image path in build/push sample
- docs: record v0.1.0 publish and remaining secret-gated push validation

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-29 22:03:58 -05:00

21 lines
522 B
YAML

name: Smoke — Docker Login
on:
workflow_dispatch:
jobs:
login:
# Use `host` so the Docker CLI and mounted socket are available; the
# `ubuntu-latest` job container has neither.
runs-on: host
steps:
- name: Log in to Gitea Container Registry
uses: docker/login-action@v3
with:
registry: registry.alwisp.com
username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_TOKEN }}
- name: Confirm Docker login
run: docker info