ci: release tag after builds are done
parent
93d7f4d76b
commit
6a320db349
|
|
@ -9,6 +9,16 @@ on:
|
|||
name: Release Tip
|
||||
|
||||
jobs:
|
||||
tag:
|
||||
runs-on: ubuntu-latest
|
||||
needs: [flatpak, build-macos]
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Tip Tag
|
||||
run: |
|
||||
git tag -fa tip -m "Latest Continuous Release" ${GITHUB_SHA}
|
||||
git push --force origin tip
|
||||
|
||||
flatpak:
|
||||
if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }}
|
||||
runs-on: ubuntu-latest
|
||||
|
|
@ -103,12 +113,6 @@ jobs:
|
|||
target_commitish: ${{ github.sha }}
|
||||
files: ghostty-macos-universal-unsigned.zip
|
||||
|
||||
# Update the Release Tag
|
||||
- name: Tip Tag
|
||||
run: |
|
||||
git tag -fa tip -m "Latest Continuous Release" ${GITHUB_SHA}
|
||||
git push --force origin tip
|
||||
|
||||
- name: Codesign app bundle
|
||||
env:
|
||||
MACOS_CERTIFICATE: ${{ secrets.PROD_MACOS_CERTIFICATE }}
|
||||
|
|
|
|||
Loading…
Reference in New Issue