Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Commit

Permalink
Create nightly release job (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
aliddell authored May 15, 2023
1 parent 1cc251f commit 4c6e16b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/nightly-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Create nightly release

on:
schedule:
- cron: "0 5 * * *" # runs at 5 AM UTC

jobs:
nightly-release:
needs: nightly-build
name: "Nightly Release"
runs-on: "ubuntu-latest"

permissions: write-all

steps:
- uses: actions/checkout@v3

- uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: ${{ github.token }}
automatic_release_tag: "nightly"
prerelease: true
title: "Nightly Release"

0 comments on commit 4c6e16b

Please sign in to comment.