Skip to content

Commit

Permalink
[Feature] Add nightly release GitHub workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jnsdls committed Jun 18, 2024
1 parent e441adf commit 8737f8e
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 11 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/release-nightly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Using CUSTOM_GITHUB_TOKEN instead of GITHUB_TOKEN is required to trigger workflows in "Version Packages" PR created by changesets/action
# CUSTOM_GITHUB_TOKEN should be a PAT with write access to the repo and has to be created and set as a secret in the repo manually

name: Release Nightly

on:
schedule:
# every night at 00:00 UTC
- cron: '0 0 * * *'
workflow_dispatch:


env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}

jobs:
release:
name: Release Nightly
timeout-minutes: 30
runs-on: ubuntu-latest-16
steps:
- name: Checkout branch
uses: actions/checkout@v4
with:
fetch-depth: 0
# Do not use the GITHUB_TOKEN by default
token: ${{ secrets.CUSTOM_GITHUB_TOKEN }}

- name: Setup bun
uses: oven-sh/setup-bun@v1
with:
bun-version: 1.0.35

- name: Install
uses: ./.github/composite-actions/install

- name: Build
run: pnpm build:release

- name: Create @nightly release
run: |
git checkout main
pnpm version-packages:nightly
pnpm release:nightly
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.CUSTOM_GITHUB_TOKEN }}
12 changes: 1 addition & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Using CUSTOM_GITHUB_TOKEN instead of GITHUB_TOKEN is required to trigger workflows in "Version Packages" PR created by changesets/action
# CUSTOM_GITHUB_TOKEN should be a PAT with write access to the repo and has to be created and set as a secret in the repo manually

name: Release Nightly & Stable
name: Release Stable

on:
push:
Expand Down Expand Up @@ -53,13 +53,3 @@ jobs:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.CUSTOM_GITHUB_TOKEN }}

- name: Create @nightly release
if: steps.changesets.outputs.published != 'true'
run: |
git checkout main
pnpm version-packages:nightly
pnpm release:nightly
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.CUSTOM_GITHUB_TOKEN }}

0 comments on commit 8737f8e

Please sign in to comment.