29 lines
638 B
YAML
29 lines
638 B
YAML
name: Build package
|
|
description: build an Arch package via Docker
|
|
|
|
inputs:
|
|
username:
|
|
description: 'Gitea username'
|
|
default: 'anonymous'
|
|
token:
|
|
description: 'Gitea PAT'
|
|
default: ''
|
|
deps:
|
|
description: 'which repos to enable'
|
|
default: 'stable'
|
|
tier:
|
|
description: 'which tier of repos to enable'
|
|
default: '1'
|
|
|
|
runs:
|
|
using: 'docker'
|
|
image: 'docker://corysanin/archery:arch'
|
|
env:
|
|
REPO: .
|
|
WORKSPACE: /workspace/${{ GITEA_REPOSITORY }}/
|
|
DEP: ${{ inputs.deps }}
|
|
TIER: ${{ inputs.tier }}
|
|
POST: ${{ inputs.token }}
|
|
username: ${{ inputs.username }}
|
|
token: ${{ inputs.token }}
|