From c37073e0cfc60f8903c4d09700e047775a86db3b Mon Sep 17 00:00:00 2001 From: Cory Sanin Date: Thu, 30 Oct 2025 10:33:01 -0500 Subject: [PATCH] Add owner and repo fields --- action.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index d230d7d..4b6c85c 100644 --- a/action.yml +++ b/action.yml @@ -8,6 +8,12 @@ inputs: token: description: 'Gitea PAT' required: true + owner: + description: 'account or org to publish to' + default: 'packages' + repo: + description: 'destination db' + default: 'microverse' runs: using: "composite" @@ -22,7 +28,7 @@ runs: echo '📤️ Uploading package to ${{ gitea.server_url }} ...' curl -f --user \"\$username:\$token\" \ --upload-file ./*.tar.zst \ - '${{ gitea.server_url }}/api/packages/packages/arch/microverse' + '${{ gitea.server_url }}/api/packages/${{ inputs.owner }}/arch/${{ inputs.repo }}' " > "./post-entrypoint.sh" chmod +x "./post-entrypoint.sh" git config --global user.name 'Guy Incognito'