16 lines
415 B
YAML
16 lines
415 B
YAML
name: 'Docker Action Template'
|
|
description: 'Docker Action 範本'
|
|
author: 'Jeffery'
|
|
inputs:
|
|
keep_count:
|
|
description: ''
|
|
required: false
|
|
default: 2
|
|
runs:
|
|
using: 'docker'
|
|
image: 'Dockerfile'
|
|
env:
|
|
GITEA_SERVER_URL: ${{ gitea.server_url }}
|
|
GITEA_REPOSITORY: ${{ gitea.repository }}
|
|
GITEA_TOKEN: ${{ secrets.CUSTOM_TOKEN || secrets.GITEA_TOKEN }}
|
|
KEEP_COUNT: ${{ inputs.keep_count }} |