diff --git a/action.yml b/action.yml index 8b8d5f4..23a34d4 100644 --- a/action.yml +++ b/action.yml @@ -1,9 +1,21 @@ name: Build package description: build an Arch package via Docker +inputs: + username: + description: 'Gitea username' + required: true + default: 'anonymous' + token: + description: 'Gitea PAT' + required: true + runs: using: 'docker' image: 'docker://corysanin/archery:artix' env: REPO: . - WORKSPACE: /github/workspace + WORKSPACE: /workspace/${{ GITEA_REPOSITORY }}/ + POST: enabled + username: ${{ inputs.username }} + token: ${{ inputs.token }}