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 e51234f commit 3d83957Copy full SHA for 3d83957
.github/workflows/ci.yaml
@@ -94,6 +94,14 @@ jobs:
94
overwrite: true
95
file_glob: true
96
97
+ - name: Tip Tag
98
+ if: ${{ github.event_name == 'schedule' && github.ref_name == 'main' }}
99
+ run: |
100
+ git config user.name "github-actions[bot]"
101
+ git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
102
+ git tag -fa tip -m "Latest Continuous Release" ${GITHUB_SHA}
103
+ git push --force origin tip
104
+
105
- name: Ghostty Tip ("Nightly")
106
if: ${{ github.event_name == 'schedule' && github.ref_name == 'main' }}
107
uses: softprops/[email protected]
0 commit comments