This repository was archived by the owner on Dec 16, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1313 uses : actions/checkout@v3
1414 - name : Get the Git tag name
1515 id : get-tag-name
16- run : echo "tag-name=${GITHUB_REF/refs\/tags\/v/}"
16+ run : echo "tag-name=${GITHUB_REF/refs\/tags\/v/}" >> "$GITHUB_OUTPUT"
1717 - name : Create Release
18- uses : actions/create-release@v2
18+ uses : actions/create-release@v1
1919 env :
2020 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
2121 with :
Original file line number Diff line number Diff line change 5656 steps :
5757 - name : Checkout commit
5858 uses : actions/checkout@v3
59+ - name : Get the Git tag name
60+ id : get-tag-name
61+ run : echo "tag-name=${GITHUB_REF/refs\/tags\/v/}" >> "$GITHUB_OUTPUT"
5962 - name : Set up Python
6063 id : setup-python
6164 uses : actions/setup-python@v3
6467 pip install -r ./requirements.txt
6568 pip install build
6669 - name : Execute build
70+ env :
71+ ROOKIFY_VERSION : ${{ steps.get-tag-name.outputs.tag-name }}
6772 run : |-
6873 python -m build .
6974 - name : Publish package
You can’t perform that action at this time.
0 commit comments