Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Randomblock1 committed Dec 15, 2020
1 parent 76491ab commit dd47a87
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ inputs:
required: false
default: theos
theos-src:
description: 'Where to fetch Theos from (git URL)'
description: 'Where to fetch Theos from (github URL)'
required: false
default: 'https://github.com/theos/theos'
theos-sdks:
description: 'Where to get the SDKs from (git URL)'
description: 'Where to get the SDKs from (github URL)'
required: false
default: 'https://github.com/theos/sdks'
runs:
Expand All @@ -34,8 +34,8 @@ runs:
shell: bash
run: |
cd ${{ github.workspace }}/${{ inputs.theos-dir }}/sdks
curl -LO ${{ inputs.theos-src }}/archive/master.zip
TMP=$(mktemp -d)
unzip master.zip -d $TMP
mv $TMP/*-master/*.sdk $THEOS/sdks
rm -r master.zip $TMP
curl -LO ${{ inputs.theos-src }}/archive/master.zip
TMP=$(mktemp -d)
unzip master.zip -d $TMP
mv $TMP/*-master/*.sdk $THEOS/sdks
rm -r master.zip $TMP

0 comments on commit dd47a87

Please sign in to comment.