We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3821b6b commit f46982eCopy full SHA for f46982e
.github/workflows/deploy.yml
@@ -28,11 +28,14 @@ jobs:
28
# Install Dependencies
29
- name: Clone Repository
30
uses: actions/checkout@v2
31
+ - name: Set up Python
32
+ uses: actions/setup-python@v4
33
+ with:
34
+ python-version: '3.10'
35
- name: Install Python Deploy Tools
36
run: |
- python -m pip install wheel
- python -m pip install twine
- python -m pip install awscli
37
+ python -m pip install --upgrade pip
38
+ python -m pip install setuptools wheel twine awscli
39
shell: cmd
40
- name: Install Node
41
uses: actions/setup-node@v3
0 commit comments