File tree Expand file tree Collapse file tree
{{cookiecutter.project_slug}}/.github/workflows Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6060 run : |
6161 python -m pip install --upgrade pip
6262 pip install poetry tox tox-gh-actions
63- echo "package_version_short=`poetry version --short`.DEV.$GITHUB_RUN_NUMBER" > $GITHUB_ENV
64- echo "package_version_full" =`poetry version`.DEV.$GITHUB_RUN_NUMBER >> $GITHUB_ENV
63+ echo "package_version_short=`poetry version --short`.DEV.$GITHUB_RUN_NUMBER" >> $GITHUB_ENV
64+ echo "package_version_full=`poetry version`.DEV.$GITHUB_RUN_NUMBER" >> $GITHUB_ENV
6565
6666 - name : build documentation
6767 run : |
Original file line number Diff line number Diff line change 4444 python -m pip install --upgrade pip
4545 pip install tox-gh-actions poetry
4646 echo "package_version_short=`poetry version --short`" > $GITHUB_ENV
47- echo "package_version_full" =`poetry version` >> $GITHUB_ENV
47+ echo "package_version_full=`poetry version`" >> $GITHUB_ENV
4848
4949 - name : pre-publish documentation
5050 run : |
Original file line number Diff line number Diff line change 1414* [ #16 ] ( https://github.com/zillionare/python-project-wizard/issues/16 ) fixed
1515* [ #18 ] ( https://github.com/zillionare/python-project-wizard/issues/18 ) fixed
1616* [ #19 ] ( https://github.com/zillionare/python-project-wizard/issues/19 ) implemented.
17+ * [ #20 ] ( https://github.com/zillionare/python-project-wizard/issues/20 ) implemented. You can refer by using ${{ env.package_version_short }} and ${{ env.package_version_full }} now.
1718## v1.0
1819*** first release with the following features:***
1920
Original file line number Diff line number Diff line change 7272 run : |
7373 python -m pip install --upgrade pip
7474 pip install poetry tox tox-gh-actions
75- echo "package_version_short=`poetry version --short`.DEV.$GITHUB_RUN_NUMBER" > $GITHUB_ENV
76- echo "package_version_full" =`poetry version`.DEV.$GITHUB_RUN_NUMBER >> $GITHUB_ENV
75+ echo "package_version_short=`poetry version --short`.DEV.$GITHUB_RUN_NUMBER" >> $GITHUB_ENV
76+ echo "package_version_full=`poetry version`.DEV.$GITHUB_RUN_NUMBER" >> $GITHUB_ENV
7777
7878 - name : build documentation
7979 run : |
Original file line number Diff line number Diff line change 4343 run : |
4444 python -m pip install --upgrade pip
4545 pip install tox-gh-actions poetry
46- echo "package_version_short=`poetry version --short`" > $GITHUB_ENV
47- echo "package_version_full" =`poetry version` >> $GITHUB_ENV
46+ echo "package_version_short=`poetry version --short`" >> $GITHUB_ENV
47+ echo "package_version_full=`poetry version`" >> $GITHUB_ENV
4848
4949 - name : pre-publish documentation
5050 run : |
You can’t perform that action at this time.
0 commit comments