mirror of
https://github.com/CompeyDev/setup-rokit.git
synced 2025-04-09 04:10:57 +01: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:
|
steps:
|
||||||
- name: Download aftman
|
- name: Download aftman
|
||||||
if: runner.os == 'Linux'
|
if: runner.os == 'Linux'
|
||||||
|
shell: bash
|
||||||
run: gh release download ${{ inputs.version }} --repo LPGhatguy/aftman --pattern *linux-x86_64.zip
|
run: gh release download ${{ inputs.version }} --repo LPGhatguy/aftman --pattern *linux-x86_64.zip
|
||||||
|
|
||||||
- name: Download aftman
|
- name: Download aftman
|
||||||
if: runner.os == 'macOS'
|
if: runner.os == 'macOS'
|
||||||
|
shell: bash
|
||||||
run: gh release download ${{ inputs.version }} --repo LPGhatguy/aftman --pattern *macos-x86_64.zip
|
run: gh release download ${{ inputs.version }} --repo LPGhatguy/aftman --pattern *macos-x86_64.zip
|
||||||
|
|
||||||
- name: Download aftman
|
- name: Download aftman
|
||||||
if: runner.os == 'Windows'
|
if: runner.os == 'Windows'
|
||||||
|
shell: bash
|
||||||
run: gh release download ${{ inputs.version }} --repo LPGhatguy/aftman --pattern *windows-x86_64.zip
|
run: gh release download ${{ inputs.version }} --repo LPGhatguy/aftman --pattern *windows-x86_64.zip
|
||||||
|
|
||||||
- name: Install aftman
|
- name: Install aftman
|
||||||
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
unzip aftman*.zip
|
unzip aftman*.zip
|
||||||
./aftman self-install
|
./aftman self-install
|
||||||
|
|
Loading…
Add table
Reference in a new issue