-
Notifications
You must be signed in to change notification settings - Fork 142
60 lines (51 loc) · 1.37 KB
/
release-nightly.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Release Nightly
on:
workflow_dispatch:
schedule:
# 00:00 AM Beijing Time.
- cron: "0 16 * * *"
permissions:
id-token: write
jobs:
release:
name: Release Nightly
runs-on: ubuntu-latest
if: github.repository == 'web-infra-dev/rspress'
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
# This makes Actions fetch only one branch to release
fetch-depth: 1
- name: Install Pnpm
run: corepack enable
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22.x
cache: 'pnpm'
- name: Install npm v9
run: npm install -g npm@9
- name: Nx Cache
id: nx-cache
uses: actions/cache@v4
with:
path: .nx-cache
key: nx-${{ github.ref_name }}-${{ github.sha }}
restore-keys: |
nx-${{ github.ref_name }}-
nx-
- name: Install Dependencies && Build
run: pnpm install
- name: Release
uses: web-infra-dev/actions@v2
with:
version: nightly
branch: main
type: 'release'
tools: 'changeset'
env:
GITHUB_TOKEN: ${{ secrets.REPO_SCOPED_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
REPOSITORY: ${{ github.repository }}
REF: ${{ github.ref }}