-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (50 loc) · 1.24 KB
/
build-app.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: Build application
on:
push:
branches:
- main
workflow_dispatch:
jobs:
lint:
name: Lint files
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/setup
- name: Lint files
run: yarn lint
- name: Typecheck files
run: npx tsc
build-app:
name: Build Application
runs-on: ubuntu-latest
needs: [lint]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/setup
- name: Build the Next.js app
run: yarn build
env:
G_USER: ${{ secrets.G_USER }}
G_TOKEN: ${{ secrets.G_TOKEN }}
update-version:
name: Update version
runs-on: ubuntu-latest
needs: [build-app]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Git
run: |
git config --global user.name "RichardRNStudio"
git config --global user.email "[email protected]"
- name: Update version
run: |
npm version patch -m "Bump version to %s"
git push --force --follow-tags
env:
NODE_AUTH_TOKEN: ${{secrets.ACTIONS_PAT}}