-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (34 loc) · 1 KB
/
release.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
name: Release
on:
pull_request:
release:
types: [published]
permissions:
contents: write
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: CompeyDev/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Get model file name
run: |
name=$(jq -r .name default.project.json)
echo "MODEL_FILE=$name.rbxm" >> $GITHUB_ENV
- name: Install packages
run: lune run wally-install
- name: Build
run: lune run build -- --target prod --output ${{ env.MODEL_FILE }}
- name: Login to Wally registry
run: wally login --token ${{ secrets.WALLY_REGISTRY_TOKEN }}
- name: Publish to Wally
if: ${{ github.event.release }}
run: wally publish
- uses: softprops/action-gh-release@v1
if: ${{ github.event.release }}
with:
files: ${{ env.MODEL_FILE }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}