-
Notifications
You must be signed in to change notification settings - Fork 239
104 lines (90 loc) · 2.98 KB
/
release.yaml
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
name: Release
on:
pull_request:
branches:
- newrepo
types:
- closed
env:
TZ: "America/New_York"
jobs:
release:
name: Release
runs-on: ubuntu-latest
environment: Production
if: >
github.repository == 'fullcalendar/fullcalendar-workspace' &&
github.event.pull_request.head.repo.full_name == 'fullcalendar/fullcalendar-workspace' &&
github.event.pull_request.head.ref == 'staged-release' &&
github.event.pull_request.merged
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
token: ${{ secrets.RELEASE_GITHUB_TOKEN }} # for sync-repos pull/push later on
fetch-depth: 0 # fetches ALL history. needed for sync-repos operations
# for sync-repos pull/push later on
- name: Setup Git User
run: |
git config --global user.name "${{ github.triggering_actor }}" && \
git config --global user.email "${{ github.triggering_actor }}@users.noreply.github.com" && \
git config -l
- name: Setup PNPM
uses: pnpm/[email protected]
with:
version: 8.6.3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.13.0
cache: 'pnpm'
# - name: Setup Turbo Cache
# uses: actions/cache@v3
# with:
# path: node_modules/.cache/turbo
# key: turbo-${{ github.job }}-${{ github.ref_name }}-${{ github.sha }}
# restore-keys: turbo-${{ github.job }}-${{ github.ref_name }}-
- name: Install Dependencies
run: |
pnpm \
--filter 'fullcalendar...' \
--filter 'fullcalendar-scheduler...' \
--filter '@fullcalendar/*...' \
--filter '@fullcalendar-scripts/*...' \
--filter '@fullcalendar-tests/*...' \
--filter '!./contrib/**' \
install
- name: Sync Repos
run: pnpm run sync-repos
- name: Lint
run: |
pnpm \
--filter '!@fullcalendar-monorepos/*' \
--filter '!./examples/**' \
run lint
- name: Build
run: |
pnpm \
--filter 'fullcalendar...' \
--filter 'fullcalendar-scheduler...' \
--filter '@fullcalendar/*...' \
--filter '@fullcalendar-scripts/*...' \
--filter '@fullcalendar-tests/*...' \
--filter '!./contrib/**' \
run build
# - name: Test
# if: ${{ !contains(github.event.pull_request.title, 'no-test') }}
# run: |
# pnpm \
# --filter 'fullcalendar...' \
# --filter 'fullcalendar-scheduler...' \
# --filter '@fullcalendar/*...' \
# --filter '@fullcalendar-scripts/*...' \
# --filter '@fullcalendar-tests/*...' \
# --filter '!./contrib/**' \
# run test
- name: GitHub CLI Stuff
env:
GH_TOKEN: ${{ secrets.RELEASE_GITHUB_TOKEN }}
run: gh auth status