mirror of
https://github.com/CompeyDev/setup-rokit.git
synced 2024-12-12 12:40:36 +00:00
Fix aftman.toml
file being removed (#5)
This commit is contained in:
parent
8e8cef2d23
commit
65f3439f00
1 changed files with 5 additions and 1 deletions
|
@ -49,7 +49,11 @@ runs:
|
||||||
- name: Delete artifacts
|
- name: Delete artifacts
|
||||||
run: |
|
run: |
|
||||||
rm aftman*.zip
|
rm aftman*.zip
|
||||||
rm aftman*
|
if ${{ runner.os == 'Windows' }}; then
|
||||||
|
rm aftman.exe
|
||||||
|
else
|
||||||
|
rm aftman
|
||||||
|
fi
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- name: Set environment variable
|
- name: Set environment variable
|
||||||
|
|
Loading…
Reference in a new issue