Skip to content

Commit

Permalink
[ci] Publish compiler weekly prereleases
Browse files Browse the repository at this point in the history
Adds a new weekly job for the compiler
  • Loading branch information
poteto committed Oct 18, 2024
1 parent cdde15e commit a771c2d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/compiler_prereleases_weekly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: (Compiler) Publish Prereleases Weekly

on:
schedule:
# At 10 minutes past 9:00 on Mon
- cron: 10 16 * * 1

env:
TZ: /usr/share/zoneinfo/America/Los_Angeles

jobs:
publish_prerelease_beta:
name: Publish to Beta channel
uses: facebook/react/.github/workflows/compiler_prereleases.yml@main
with:
commit_sha: ${{ github.sha }}
release_channel: beta
dist_tag: beta
version_name: '19.0.0'
secrets:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit a771c2d

Please sign in to comment.