diff --git a/.github/workflows/release-tip.yml b/.github/workflows/release-tip.yml index 30417bce7..c85a031a9 100644 --- a/.github/workflows/release-tip.yml +++ b/.github/workflows/release-tip.yml @@ -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 }}