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 0b5129e commit fe01125Copy full SHA for fe01125
.github/workflows/release-framework.yml
@@ -45,8 +45,13 @@ jobs:
45
CHECKSUM=`swift package compute-checksum LightningDevKit.xcframework.zip`
46
python3 ./src/scripts/update_swift_package_checksum.py --checksum "${CHECKSUM}"
47
git commit -m "Update Package.swift for ${{ github.event.inputs.tag }} release." ./Package.swift
48
+ - name: Push and tag commit
49
+ if: ${{ github.event.inputs.tag != null && github.event.inputs.tag != '' }}
50
+ run: |
51
git tag ${{ github.event.inputs.tag }}
- git push origin HEAD:main --tags
52
+ git push origin HEAD:main
53
+ git push origin --tags
54
+
55
release:
56
name: Publish Release
57
runs-on: ubuntu-latest
0 commit comments