skopeo-login/action.yml
mr-boneman b13a25cbd6
Some checks failed
/ test (push) Failing after 16s
i don't like doing it this way but maybe it works
2024-05-12 20:50:27 +02:00

19 lines
No EOL
504 B
YAML

# SPDX-License-Identifier: MIT
name: 'Skopeo login'
description: 'log into a registry using skopeo'
inputs:
registry:
description: 'registry to log into'
username:
description: 'username used for the login'
default: ${{ github.repository_owner }}
password:
description: 'password used for the login'
required: true
runs:
using: "composite"
steps:
- run: |
skopeo login ${{ inputs.registry }} -u ${{ inputs.username }} -p ${{ inputs.password }}
shell: bash