From 4cd3e2e121805b8e6ab5bd1d83b91bebf394bf91 Mon Sep 17 00:00:00 2001 From: Alex Hancock Date: Wed, 10 Sep 2025 12:12:41 -0400 Subject: [PATCH] chore: fix nightly builds to have tags (#4595) --- .github/workflows/nightly.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index a4c4c66b..06b0f64f 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -70,10 +70,12 @@ jobs: release: name: Release runs-on: ubuntu-latest - needs: [build-cli, install-script, bundle-desktop, bundle-desktop-linux, bundle-desktop-windows] + needs: [prepare-version, build-cli, install-script, bundle-desktop, bundle-desktop-linux, bundle-desktop-windows] permissions: contents: write steps: + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # pin@v4 + - name: Download all artifacts uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # pin@v4 with: @@ -83,8 +85,8 @@ jobs: - name: Release nightly uses: ncipollo/release-action@440c8c1cb0ed28b9f43e4d1d670870f059653174 # pin@v1 with: - tag: nightly - name: Nightly + tag: ${{ needs.prepare-version.outputs.version }} + name: "Nightly ${{ needs.prepare-version.outputs.version }}" token: ${{ secrets.GITHUB_TOKEN }} artifacts: | goose-*.tar.bz2 @@ -95,4 +97,5 @@ jobs: download_cli.sh allowUpdates: true omitBody: true - omitPrereleaseDuringUpdate: true + prerelease: true + makeLatest: false