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 fb3a537 commit 6b2e1aeCopy full SHA for 6b2e1ae
.github/workflows/python-publish.yml
@@ -17,9 +17,13 @@ jobs:
17
- name: Set up Python
18
uses: actions/setup-python@v2
19
with:
20
- python-version: '3.7'
+ python-version: '3.8'
21
+ - name: Get latest release version number
22
+ id: get_version
23
+ uses: battila7/get-version-action@v2
24
- name: Install dependencies
25
run: |
26
+ echo ${{ steps.get_version.outputs.version-without-v }} >> tagname
27
python -m pip install --upgrade pip
28
pip install setuptools wheel twine requests beautifulsoup4 lxml
29
- name: Build and publish
0 commit comments