19 lines
409 B
YAML
19 lines
409 B
YAML
|
|
name: Smoke — Docker Login
|
||
|
|
|
||
|
|
on:
|
||
|
|
workflow_dispatch:
|
||
|
|
|
||
|
|
jobs:
|
||
|
|
login:
|
||
|
|
runs-on: ubuntu-latest
|
||
|
|
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
|