-
-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use standardized naming for build files that respects gitignore (#1817)
Co-authored-by: Expertcoderz <[email protected]>
- Loading branch information
1 parent
3608b08
commit c367391
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -67,14 +67,14 @@ jobs: | |
path: ${{ steps.naming.outputs.output_name }}.rbxm | ||
|
||
- name: Build Loader | ||
run: rojo build -o loader.rbxm .github/loader.deploy.project.json | ||
run: rojo build -o Adonis_Loader.rbxm .github/loader.deploy.project.json | ||
|
||
- name: Build MainModule | ||
run: rojo build -o module.rbxm .github/module.deploy.project.json | ||
run: rojo build -o Adonis_MainModule.rbxm .github/module.deploy.project.json | ||
|
||
- name: Build Alerts Module | ||
run: rojo build -o alertsmodule.rbxm .github/alerts.deploy.project.json | ||
|
||
run: rojo build -o Adonis_AlertsModule.rbxm .github/alerts.deploy.project.json | ||
- name: Send Standalone Release to Discord channel | ||
uses: tsickert/[email protected] | ||
with: | ||
|
@@ -87,7 +87,7 @@ jobs: | |
url: "${{ secrets.PUBURL2 }}/?assetId=${{ secrets.LOADER_ID }}" | ||
method: "POST" | ||
contentType: "multipart/form-data" | ||
files: '{ "file": "loader.rbxm" }' | ||
files: '{ "file": "Adonis_Loader.rbxm" }' | ||
customHeaders: '{ "upload-secret": "${{ secrets.PUBURL2_SECRET }}" }' | ||
timeout: 10000 | ||
|
||
|
@@ -97,7 +97,7 @@ jobs: | |
url: "${{ secrets.PUBURL2 }}/?assetId=${{ secrets.MODULE_ID }}" | ||
method: "POST" | ||
contentType: "multipart/form-data" | ||
files: '{ "file": "module.rbxm" }' | ||
files: '{ "file": "Adonis_MainModule.rbxm" }' | ||
customHeaders: '{ "upload-secret": "${{ secrets.PUBURL2_SECRET }}" }' | ||
timeout: 10000 | ||
|
||
|
@@ -107,6 +107,6 @@ jobs: | |
url: "${{ secrets.PUBURL2 }}/?assetId=${{ secrets.ALERTS_MODULE_ID }}" | ||
method: "POST" | ||
contentType: "multipart/form-data" | ||
files: '{ "file": "alertsmodule.rbxm" }' | ||
files: '{ "file": "Adonis_AlertsModule.rbxm" }' | ||
customHeaders: '{ "upload-secret": "${{ secrets.PUBURL2_SECRET }}" }' | ||
timeout: 10000 |