-
Notifications
You must be signed in to change notification settings - Fork 29
42 lines (33 loc) · 938 Bytes
/
publish.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
name: Publish
on:
workflow_dispatch:
release:
types: [published]
jobs:
publish-wally:
name: "Publish to Wally"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Aftman
uses: ok-nick/[email protected]
with:
version: v0.3.0
- name: Login
run: wally login --token ${{ secrets.WALLY_TOKEN }}
- name: Publish
run: wally publish
publish-demo-place:
name: "Publish Roblox Demo Place"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Aftman
uses: ok-nick/[email protected]
with:
version: v0.3.0
- name: Build place file
run: rojo build -o Iris.rbxl ./demo.project.json
- name: Publish
shell: bash
run: rbxcloud experience publish -a ${{ secrets.PLACE_KEY }} -u 2823622397 -p 7245022703 -t published -f Iris.rbxl