Compare commits
2 Commits
391205eb44
...
v1.0.3
| Author | SHA1 | Date | |
|---|---|---|---|
| 6e37d5b209 | |||
| 8403e67ba4 |
@@ -9,6 +9,12 @@ See [action.yml](action.yml).
|
|||||||
```
|
```
|
||||||
- uses: https://git.sanin.dev/packages_infra/makepkg-build-action@v1-artix
|
- uses: https://git.sanin.dev/packages_infra/makepkg-build-action@v1-artix
|
||||||
with:
|
with:
|
||||||
|
# Which repos to use. Can be stable, testing, staging
|
||||||
|
deps: 'stable'
|
||||||
|
|
||||||
|
# Which tier of repos to use. 0 for system, 1 for world, etc.
|
||||||
|
tier: '1'
|
||||||
|
|
||||||
# Username intended to be used for publishing artifacts. Wihtout a proper post-entrypoint.sh script to
|
# Username intended to be used for publishing artifacts. Wihtout a proper post-entrypoint.sh script to
|
||||||
# utilize it, this input does nothing.
|
# utilize it, this input does nothing.
|
||||||
username: 'anonymous'
|
username: 'anonymous'
|
||||||
|
|||||||
@@ -8,6 +8,12 @@ inputs:
|
|||||||
token:
|
token:
|
||||||
description: 'Gitea PAT'
|
description: 'Gitea PAT'
|
||||||
default: ''
|
default: ''
|
||||||
|
deps:
|
||||||
|
description: 'which repos to enable'
|
||||||
|
default: 'stable'
|
||||||
|
tier:
|
||||||
|
description: 'which tier of repos to enable'
|
||||||
|
default: '1'
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: 'docker'
|
using: 'docker'
|
||||||
@@ -15,6 +21,8 @@ runs:
|
|||||||
env:
|
env:
|
||||||
REPO: .
|
REPO: .
|
||||||
WORKSPACE: /workspace/${{ GITEA_REPOSITORY }}/
|
WORKSPACE: /workspace/${{ GITEA_REPOSITORY }}/
|
||||||
|
DEP: ${{ inputs.deps }}
|
||||||
|
TIER: ${{ inputs.tier }}
|
||||||
POST: ${{ inputs.token }}
|
POST: ${{ inputs.token }}
|
||||||
username: ${{ inputs.username }}
|
username: ${{ inputs.username }}
|
||||||
token: ${{ inputs.token }}
|
token: ${{ inputs.token }}
|
||||||
|
|||||||
Reference in New Issue
Block a user