Skip to content

ye

ye #71

Workflow file for this run

name: Release
on:
push:
tags: ["v*"]
permissions:
contents: write
jobs:
github-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rokit
uses: CompeyDev/setup-rokit@v0.1.2
- name: Build
run: |
rojo build default.project.json -o Lync.rbxm
rojo build dev.project.json -o Lync-dev.rbxl
rojo build bench.project.json -o Lync-bench.rbxl
- name: Create Release
uses: softprops/action-gh-release@v2
with:
files: |
Lync.rbxm
Lync-dev.rbxl
Lync-bench.rbxl
generate_release_notes: true