Skip to content

Commit

Permalink
Fix url
Browse files Browse the repository at this point in the history
  • Loading branch information
kappa-maintainer committed May 4, 2024
1 parent b54b63b commit be36bf9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/BuildTestInstance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle

name: Build Test Instance
run-name: "[${{ github.event.client_payload.build_type || 'Manual' }}#${{ github.event.client_payload.version }}] MMC instance of ${{ inputs.branch || github.event.client_payload.branch }}"
run-name: "[${{ github.event.client_payload.build_type || 'Manual' }}-${{ github.event.client_payload.version }}] MMC instance of ${{ inputs.branch || github.event.client_payload.branch }}"
on:
workflow_dispatch:
inputs:
Expand Down
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
installerURL = 'https://nightly.link/CleanroomMC/Cleanroom/' \
+ (f'workflows/BuildTest/{branch}' if not RUN_JOB_URL
else f'actions/runs/{RUN_JOB_URL.rsplit("/", 1)[-1]}') \
+ '/installer' + os.getenv('version') + '.zip'
+ '/installer-' + os.getenv('version') + '.zip'
print('Installer URL: ' + installerURL)
response = requests.get(installerURL)
if not response.ok:
Expand Down

0 comments on commit be36bf9

Please sign in to comment.