fix spelling errors and remove class name #10
Workflow file for this run
This file contains 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: Create release draft and build standalone | |
on: | |
push: | |
tags: | |
- 'v*' | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
# Create release draft and build | |
build: | |
name: New Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Aftman | |
uses: ok-nick/[email protected] | |
- name: Install Wally dependencies | |
run: wally install | |
- name: Format code | |
run: stylua src/ | |
- name: Build standalone | |
run: argon build standalone.project.json --output ./Standalone.rbxm | |
- name: Create release | |
id: create_release | |
uses: softprops/[email protected] | |
with: | |
tag_name: ${{ github.ref_name }} | |
name: ${{ github.ref_name }} | |
draft: true | |
generate_release_notes: true | |
files: | | |
./Standalone.rbxm | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |