-
Notifications
You must be signed in to change notification settings - Fork 2
79 lines (63 loc) · 1.58 KB
/
release-development.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
name: Release Develop
on:
push:
branches:
- develop
paths-ignore:
- README.md
- LICENSE.md
- 'scripts/**'
- '.github/**'
permissions:
contents: write
packages: write
concurrency:
group: development_environment
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 9
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Setup Aftman
uses: ok-nick/setup-aftman@v0.4.2
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Compile
run: pnpm build-dev --verbose
- name: Build project
run: rojo build ./default.project.json --output place.rbxlx
- name: Upload place
uses: actions/upload-artifact@v3
with:
name: place
path: place.rbxlx
if-no-files-found: error
deploy:
runs-on: ubuntu-latest
environment: development
needs: build
steps:
- uses: actions/checkout@v4
- uses: ok-nick/setup-aftman@v0.4.2
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Download place artifact
uses: actions/download-artifact@v3
with:
name: place
- name: Deploy place
run: mantle deploy --environment development
env:
ROBLOSECURITY: ${{ secrets.ROBLOSECURITY }}