v0.5.0 #1
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
tags: | |
- v** | |
jobs: | |
build: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.7 | |
with: | |
submodules: recursive | |
- name: Setup Aftman | |
uses: ok-nick/setup-aftman@v0.4.2 | |
with: | |
version: v0.3.0 | |
- name: Build ColorPane for Release | |
run: rojo build --output ColorPane.rbxm build/ColorPane.project.json | |
- name: Build Companion for Release | |
run: rojo build --output Companion.rbxm build/Companion.project.json | |
- name: Create Release | |
uses: anton-yurchenko/git-release@v6.0.0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
CHANGELOG_FILE: "docs/changelog.md" | |
with: | |
args: | | |
ColorPane.rbxm | |
Companion.rbxm | |
- name: Build and Upload ColorPane | |
continue-on-error: true | |
run: rojo upload --cookie "${{ secrets.ROBLOSECURITY }}" --asset_id ${{ vars.COLORPANE_ASSET_ID }} build/ColorPane.project.json | |
- name: Build and Upload Companion | |
continue-on-error: true | |
run: rojo upload --cookie "${{ secrets.ROBLOSECURITY }}" --asset_id ${{ vars.COMPANION_ASSET_ID }} build/Companion.project.json |