Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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"
Expand All @@ -53,5 +57,4 @@ runs:

- name: Check Auto installation
shell: bash
run: |
auto --help
run: auto --version
Loading