Skip to content

Commit

Permalink
Fix invalid workflow files
Browse files Browse the repository at this point in the history
  • Loading branch information
johnameyer committed Apr 7, 2020
1 parent 71d2771 commit a39bbd4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/check-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ jobs:
strategy:
matrix:
node-version: [12.x]
python-version: [3.x']
python-version: [3.x]

steps:
- uses: actions/checkout@
- uses: actions/checkout@v2
with:
- fetch-depth: 0
fetch-depth: 0

- name: Check Version Match
run: grep "version = '${{ github.event.pull_request.title }}'" setup.py
Expand All @@ -40,7 +40,7 @@ jobs:
working-directory: ./client
run: npm run build -- --prod --configuration=flask

- uses: actions/setup-python@
- uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
architecture: 'x64'
Expand All @@ -55,9 +55,9 @@ jobs:
${{ runner.os }}-
- name: Install Python Dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install --user --upgrade setuptools wheel twine
run: |
python3 -m pip install --upgrade pip
python3 -m pip install --user --upgrade setuptools wheel twine
- name: Create Distributions
run: |
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
strategy:
matrix:
node-version: [12.x]
python-version: [3.x']
python-version: [3.x]

steps:
- uses: actions/checkout@
- uses: actions/checkout@v2
with:
- fetch-depth: 0
fetch-depth: 0

- name: Check Version Match
run: grep "version = '${{ github.event.pull_request.title }}'" setup.py
Expand All @@ -41,7 +41,7 @@ jobs:
working-directory: ./client
run: npm run build -- --prod --configuration=flask

- uses: actions/setup-python@
- uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
architecture: 'x64'
Expand All @@ -56,9 +56,9 @@ jobs:
${{ runner.os }}-
- name: Install Python Dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install --user --upgrade setuptools wheel twine
run: |
python3 -m pip install --upgrade pip
python3 -m pip install --user --upgrade setuptools wheel twine
- name: Create Distributions
run: |
Expand Down

0 comments on commit a39bbd4

Please sign in to comment.