File tree Expand file tree Collapse file tree 1 file changed +2
-12
lines changed
Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Original file line number Diff line number Diff line change 2222 github_token : ${{ secrets.GITHUB_TOKEN }}
2323 pypi_token : ${{ secrets.PYPI_TOKEN }}
2424
25- docs :
26- needs : publish
27- name : Deploy documentation to gh-pages
28- runs-on : ubuntu-latest
29- if : github.event.pull_request.merged == true
30- steps :
31- - uses : actions/checkout@v2
32- with :
33- fetch-depth : 0
34-
3525 - name : Setup Python
3626 uses : actions/setup-python@v2
3727 with :
@@ -50,15 +40,15 @@ jobs:
50405141 with :
5242 path : .venv
53- key : ${{ matrix.platform }}- venv-${{ matrix.python-version }} -${{ hashFiles('**/poetry.lock') }}
43+ key : venv-${{ hashFiles('**/poetry.lock') }}
5444
5545 - name : Install dependencies
5646 run : |
5747 poetry install
5848
5949 - name : Get the release version
6050 run : |
61- export RELEASE_TAG_VERSION="$( poetry run semantic-release print-version --next )"
51+ export RELEASE_TAG_VERSION="$( poetry run semantic-release print-version --current )"
6252 echo "RELEASE_TAG_VERSION=${RELEASE_TAG_VERSION}" >> $GITHUB_ENV
6353
6454 - name : Configure git
You can’t perform that action at this time.
0 commit comments