mirror of
https://github.com/CompeyDev/setup-rokit.git
synced 2024-12-12 12:40:36 +00:00
use bash for all
This commit is contained in:
parent
f933163445
commit
7bc1e06356
1 changed files with 4 additions and 0 deletions
|
@ -26,17 +26,21 @@ runs:
|
|||
steps:
|
||||
- name: Download aftman
|
||||
if: runner.os == 'Linux'
|
||||
shell: bash
|
||||
run: gh release download ${{ inputs.version }} --repo LPGhatguy/aftman --pattern *linux-x86_64.zip
|
||||
|
||||
- name: Download aftman
|
||||
if: runner.os == 'macOS'
|
||||
shell: bash
|
||||
run: gh release download ${{ inputs.version }} --repo LPGhatguy/aftman --pattern *macos-x86_64.zip
|
||||
|
||||
- name: Download aftman
|
||||
if: runner.os == 'Windows'
|
||||
shell: bash
|
||||
run: gh release download ${{ inputs.version }} --repo LPGhatguy/aftman --pattern *windows-x86_64.zip
|
||||
|
||||
- name: Install aftman
|
||||
shell: bash
|
||||
run: |
|
||||
unzip aftman*.zip
|
||||
./aftman self-install
|
||||
|
|
Loading…
Reference in a new issue