@samitouri / QOS-React-1 / commits / 9deb36748d

[ci] Publish compiler weekly prereleases (#31294)

Adds a new weekly job for the compiler

lauren committed Oct 18, 2024 at 14:43 UTC 9deb36748d699bd33f9041db5559c451c54e77a9
1 file changed +21
.github/workflows/compiler_prereleases_weekly.yml new
+21
@@ -0,0 +1,21 @@
1 +name: (Compiler) Publish Prereleases Weekly
2 +
3 +on:
4 + schedule:
5 + # At 10 minutes past 9:00 on Mon
6 + - cron: 10 9 * * 1
7 +
8 +env:
9 + TZ: /usr/share/zoneinfo/America/Los_Angeles
10 +
11 +jobs:
12 + publish_prerelease_beta:
13 + name: Publish to beta channel
14 + uses: facebook/react/.github/workflows/compiler_prereleases.yml@main
15 + with:
16 + commit_sha: ${{ github.sha }}
17 + release_channel: beta
18 + dist_tag: beta
19 + version_name: '19.0.0'
20 + secrets:
21 + NPM_TOKEN: ${{ secrets.NPM_TOKEN }}