diff --git a/README.md b/README.md index bf5c8b6..af5d1e0 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,9 @@ See [action.yml](action.yml). ``` - uses: https://git.sanin.dev/packages_infra/makepkg-build-action@v1-artix with: + # Which repos to use. Can be stable, testing, staging + deps: 'stable' + # Username intended to be used for publishing artifacts. Wihtout a proper post-entrypoint.sh script to # utilize it, this input does nothing. username: 'anonymous' diff --git a/action.yml b/action.yml index 5ef144a..aecea95 100644 --- a/action.yml +++ b/action.yml @@ -8,6 +8,9 @@ inputs: token: description: 'Gitea PAT' default: '' + deps: + description: 'which repos to enable' + default: 'stable' runs: using: 'docker' @@ -15,6 +18,7 @@ runs: env: REPO: . WORKSPACE: /workspace/${{ GITEA_REPOSITORY }}/ + DEP: ${{ inputs.deps }} POST: ${{ inputs.token }} username: ${{ inputs.username }} token: ${{ inputs.token }}