Skip to content

Commit

Permalink
Update nightly tag every night (#17879)
Browse files Browse the repository at this point in the history
Previous `release_nightly` workflow would trigger every night or on push
to the `nightly` tag, which means `nightly` tag wasn't always in sync
with the nightly we bundle. This change syncs the tag up with the
bundled releases.

Release Notes:

- N/A
  • Loading branch information
jvmncs authored Sep 16, 2024
1 parent 22db569 commit 761129e
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 3 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/bump_nightly_tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Update Nightly Tag

on:
schedule:
# Fire every day at 7:00am UTC (Roughly before EU workday and after US workday)
- cron: "0 7 * * *"

jobs:
update-nightly-tag:
if: github.repository_owner == 'zed-industries'
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Update nightly tag
run: |
git config user.name github-actions
git config user.email [email protected]
git tag -f nightly
git push origin nightly --force
3 changes: 0 additions & 3 deletions .github/workflows/release_nightly.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: Release Nightly

on:
schedule:
# Fire every day at 7:00am UTC (Roughly before EU workday and after US workday)
- cron: "0 7 * * *"
push:
tags:
- "nightly"
Expand Down

0 comments on commit 761129e

Please sign in to comment.