-
-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (36 loc) · 1.12 KB
/
continous_build.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
name: Continous Build
on:
push:
branches:
- main
permissions:
contents: write
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Pesde
uses: lumin-org/[email protected]
with:
cache: true
- name: Install Packages
run: pesde install
- name: Build
run: rojo build build.project.json --output ./ui-components.rbxm
- name: Get Timestamp
id: date
run: echo "::set-output name=current_datetime::$(date +'%Y-%m-%d %H:%M:%S')"
- name: Release
uses: softprops/[email protected]
with:
tag_name: CB
name: Continous Build
prerelease: true
generate_release_notes: true
body: |
Build created at ${{ steps.date.outputs.current_date }}
Latest commit: ${{ github.sha }}
files: |
./ui-components.rbxm