diff --git a/action.yml b/action.yml index 28b5015..cf59e4a 100644 --- a/action.yml +++ b/action.yml @@ -20,6 +20,10 @@ inputs: description: 'GH_TOKEN for Auto' required: false default: ${{ github.token }} + origin-repo: + description: 'Where to get the release artifacts' + required: false + default: 'intuit/auto' runs: using: composite steps: @@ -41,7 +45,7 @@ runs: gh release \ download ${{ inputs.version }} \ - --repo intuit/auto \ + --repo ${{ inputs.origin-repo }} \ --pattern "$name.gz" \ --dir "$tmp" gunzip "$tmp/$name.gz" @@ -53,5 +57,4 @@ runs: - name: Check Auto installation shell: bash - run: | - auto --help + run: auto --version