Skip to content

1.6.2

1.6.2 #5

Workflow file for this run

name: Release
on:
push:
tags: [ '*' ]
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: roblox/setup-foreman@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: List installed foreman tools
run: foreman list
- name: Install Wally packages
run: wally install
- name: Build plugin
run: rojo build default.project.json -o PartToTerrain.rbxm
- name: Get release info
id: get_version
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
# TODO: Look into plugin uploading via Open Cloud when supported.
- name: Create Github release
uses: softprops/action-gh-release@v1
with:
name: ${{ steps.get_version.outputs.VERSION }}
fail_on_unmatched_files: true
files: PartToTerrain.rbxm
draft: true