We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cccf16 commit 04d24c6Copy full SHA for 04d24c6
1 file changed
.github/workflows/release.yml
@@ -58,9 +58,11 @@ jobs:
58
run: |
59
cd ReScene.Lib
60
SUBMODULE_SHA=$(git rev-parse HEAD)
61
- echo "Tagging ReScene.Lib commit $SUBMODULE_SHA as v${{ steps.version.outputs.version }}"
62
- git tag "v${{ steps.version.outputs.version }}" "$SUBMODULE_SHA"
63
- git push "https://x-access-token:${LIB_PAT}@github.com/NeWbY100/ReScene.Lib.git" "v${{ steps.version.outputs.version }}"
+ TAG="v${{ steps.version.outputs.version }}"
+ echo "Tagging ReScene.Lib commit $SUBMODULE_SHA as $TAG"
+ git tag "$TAG" "$SUBMODULE_SHA"
64
+ git remote set-url origin "https://x-access-token:${LIB_PAT}@github.com/NeWbY100/ReScene.Lib.git"
65
+ git push origin "$TAG"
66
67
- name: Create GitHub Release
68
uses: softprops/action-gh-release@v2
0 commit comments