gitea-credentials/action.yml

16 lines
327 B
YAML
Raw Normal View History

2024-03-31 22:40:51 +00:00
# action.yml
name: 'Gitea Credentials'
description: 'Store git credentials for use with Gitea'
inputs:
user:
description: 'Git user'
required: true
password:
description: 'Git password'
required: true
runs:
using: 'docker'
image: 'Dockerfile'
args:
- "${{ inputs.user }}" "${{ inputs.password }}"