-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
63 additions
and
172 deletions.
There are no files selected for viewing
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,16 +11,13 @@ permissions: | |
id-token: write | ||
|
||
jobs: | ||
bump: | ||
name: Bump Versions | ||
changelog: | ||
name: Changelog | ||
runs-on: ubuntu-latest | ||
outputs: | ||
release-body: ${{ steps.update-changelog.outputs.release-notes }} | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: 'main' | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Update changelog | ||
id: update-changelog | ||
|
@@ -38,54 +35,48 @@ jobs: | |
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
needs: bump | ||
needs: changelog | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup Pesde | ||
uses: 2jammers/[email protected] | ||
with: | ||
cache: 'true' | ||
pesde-version: 'v0.5.1+registry.0.1.0' | ||
cache: true | ||
|
||
- name: Install dependencies | ||
run: pesde install | ||
|
||
- name: Generate sourcemap | ||
run: rojo sourcemap standalone.project.json --output sourcemap.json | ||
|
||
- name: Format code | ||
run: stylua src/ | ||
|
||
- name: Build standalone | ||
- name: Standalone build | ||
run: rojo build standalone.project.json --output ./Standalone.rbxm | ||
|
||
- name: Draft release | ||
uses: softprops/action-gh-release@v2.2.0 | ||
- name: Standalone release | ||
uses: softprops/action-gh-release@v2.0.9 | ||
with: | ||
tag_name: ${{ github.ref_name }} | ||
name: ${{ github.ref_name }} | ||
prerelease: ${{ contains(github.ref_name, 'rc') }} | ||
generate_release_notes: true | ||
body: | | ||
## Changelog | ||
${{ needs.bump.outputs.release-body }} | ||
${{ needs.changelog.outputs.release-body }} | ||
files: | | ||
./Standalone.rbxm | ||
package: | ||
name: Package | ||
runs-on: ubuntu-latest | ||
needs: bump | ||
needs: changelog | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup Pesde | ||
uses: 2jammers/[email protected] | ||
with: | ||
pesde-version: 'v0.5.1+registry.0.1.0' | ||
cache: true | ||
token: '${{ secrets.PESDE_TOKEN }}' | ||
|
||
- name: Publish | ||
|
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,6 @@ | ||
return { | ||
IncompatibleType = "Data type '%s' is incompatible", | ||
NotAnimatable = "%s is not an animatable object type", | ||
FailedCreation = "%s could not be created; '%s'", | ||
AlreadyExists = "Item '%s' already exists", | ||
|
||
InvalidType = "Expected type %s; got '%s'", | ||
InvalidKey = "Expected valid key type; got '%s'", | ||
InvalidClass = "'%s' is not an instance class name", | ||
InvalidPropOrEvent = "'%s' is not a property/event of the %s class", | ||
} |
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
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
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
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
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
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
Oops, something went wrong.