Skip to content

Commit

Permalink
Fix check requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
kzscisoft committed Nov 17, 2021
1 parent 7d1e50f commit 899c849
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,20 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-python@v2
with:
python-version: '3.9.7'
architecture: "x64"

- name: Install Poetry
run: python -m pip install poetry

- name: Install Module
run: python -m poetry install

- name: Get Previous tag
id: previoustag
uses: "WyriHaximus/github-action-get-previous-tag@v1"

- name: Verify version alignment
run: |
Expand All @@ -142,10 +156,6 @@ jobs:
exit 1
fi
- name: Get Previous tag
id: previoustag
uses: "WyriHaximus/github-action-get-previous-tag@v1"

- name: Build Module
run: |
poetry build
Expand Down

0 comments on commit 899c849

Please sign in to comment.