Skip to content

Commit

Permalink
testing teh workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Kairvee Vaswani <[email protected]>
  • Loading branch information
kairveeehh committed Feb 19, 2025
1 parent 5834e50 commit 330cb5b
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/nightly-build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Nightly Build and Release

on:
schedule:
- cron: '0 0 * * *' # Runs every night at midnight UTC
workflow_dispatch: # Allows manual trigger

jobs:
build:
uses: ./.github/workflows/build.yaml # Calls the existing build workflow

release:
uses: ./.github/workflows/release.yaml # Calls the existing release workflow
needs: build # Ensures build completes first

notify:
if: failure() # Runs only if any job fails
runs-on: ubuntu-latest
steps:
- name: Print Failure Message
run: echo "🚨 Nightly build failed!"
Empty file modified hack/brew-install-version.sh
100755 → 100644
Empty file.
Empty file modified test/perf.sh
100755 → 100644
Empty file.
Empty file modified test/test.sh
100755 → 100644
Empty file.

0 comments on commit 330cb5b

Please sign in to comment.