Skip to content

Commit

Permalink
update action.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeFalourd committed Oct 17, 2024
1 parent 76f305f commit 714e644
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,25 +29,13 @@ runs:
run: echo 🤖 OS runner is $(uname)
shell: bash

- name: Checkout
uses: actions/checkout@v4.2.1

- name: Setup Python
uses: actions/setup-python@v5.2.0
with:
python-version: '3.12'
cache: 'pip' # caching pip dependencies

- name: Install python libraries
run: |
if [ ${{runner.os}} != 'Windows' ]; then
pip install -r ${{ github.action_path }}/requirements.txt
elif [ ${{runner.os}} == 'Windows' ]; then
pip install -r ${{ github.action_path }}\requirements.txt
else
echo "${{runner.os}} not supported"
exit 1
fi
run: pip install requests ruamel-yaml==0.18.6
shell: bash

- name: Start StackSpot Cloud Deploy
Expand Down

0 comments on commit 714e644

Please sign in to comment.