Skip to content

Commit

Permalink
finito
Browse files Browse the repository at this point in the history
  • Loading branch information
Loweredgames committed Feb 19, 2024
1 parent c783fa0 commit 013a9f1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,10 @@ jobs:
data = json.load(f)
Release_Id = data.get('Release_Id', '')
Nightly_Release_Id = data.get('Nightly_Release_Id', '')
Nightly_Github_Tag = data.get('Nightly_Github_Tag', '')
print(f"::set-output name=RELEASE::{Release_Id}")
print(f"::set-output name=NIGHTLY::{Nightly_Release_Id}")
print(f"::set-output name=NIGHTLY_Github::{Nightly_Github_Tag}")
shell: python
- name: Construct filename
id: construct_filename
Expand All @@ -56,16 +58,16 @@ jobs:
- name: Construct tag name
id: construct_tag
run: |
tag_name="${{ steps.get_version.outputs.tag }}"
echo "::set-output name=tag::test"
tag_name="${{ steps.get_version.outputs.TAG }}"
echo "::set-output name=tag::$Nightly_Github_Tag"
- name: Create Release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ steps.construct_tag.outputs.tag }}
tag_name: ${{ steps.construct_tag.outputs.TAG }}
files: |
${{ steps.construct_filename.outputs.zipname }}
env:
GH_TOKEN: ${{ steps.get_version.outputs.RELEASE }}${{ steps.get_version.outputs.NIGHTLY }}
- name: Get Download URL
run: |
echo "${{ env.REPO_URL }}/releases/download/${{ steps.construct_tag.outputs.tag }}/${{ steps.construct_filename.outputs.zipname }}"
echo "${{ env.REPO_URL }}/releases/download/${{ steps.construct_tag.outputs.TAG }}/${{ steps.construct_filename.outputs.zipname }}"
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@

"Github_Tag": "1.20.5_JE-1a",

"Nightly_Github_Tag": "1.20.5_JE-11846a",

"Github":"https://github.com/Loweredgames/Skyblock-Classic-Edition",

"Website":"https://minecraft-map-building-versions.blogspot.com/"
Expand Down

0 comments on commit 013a9f1

Please sign in to comment.