Skip to content

Commit

Permalink
Use standardized naming for build files that respects gitignore (#1817)
Browse files Browse the repository at this point in the history
Co-authored-by: Expertcoderz <[email protected]>
  • Loading branch information
ccuser44 and Expertcoderz authored Jan 11, 2025
1 parent 3608b08 commit c367391
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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

Expand All @@ -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

Expand All @@ -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

0 comments on commit c367391

Please sign in to comment.