Skip to content

Commit

Permalink
Merge branch 'main' into new_recipes_fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Loweredgames committed Jan 20, 2025
2 parents 87974bc + 2ab600e commit 6161273
Show file tree
Hide file tree
Showing 8 changed files with 128 additions and 29 deletions.
113 changes: 113 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
# Definisce il nome del workflow:
name: Create Builds

# Trigger del workflow quando viene modificato il file delle versioni:
on:
push:
paths:
- 'datapacks/Skyblock CE datapacks/data/skyblock/function/versions/changelog/building_version.json'

jobs:
# Job per controllare quali versioni sono state modificate:
check_changes:
runs-on: ubuntu-24.04
outputs:
release_changed: ${{ steps.check.outputs.release_changed }}
nightly_changed: ${{ steps.check.outputs.nightly_changed }}
steps:
# Checkout del repository:
- uses: actions/checkout@v4
with:
fetch-depth: 2

# Script per verificare i cambiamenti nelle versioni:
- name: Check changes
id: check
shell: bash
run: |
# Definisce il percorso del file da controllare:
FILE="datapacks/Skyblock CE datapacks/data/skyblock/function/versions/changelog/building_version.json"
# Gestisce il caso del primo commit:
if ! git rev-parse HEAD^ >/dev/null 2>&1; then
echo "First commit - setting both as changed"
echo "release_changed=true" >> "$GITHUB_OUTPUT"
echo "nightly_changed=true" >> "$GITHUB_OUTPUT"
exit 0
fi
# Confronta le versioni Release tra commit precedente e attuale:
OLD_RELEASE=$(git show HEAD^:"$FILE" | grep '"Release Building"' || echo "")
NEW_RELEASE=$(git show HEAD:"$FILE" | grep '"Release Building"' || echo "")
OLD_NIGHTLY=$(git show HEAD^:"$FILE" | grep '"Nightly Building"' || echo "")
NEW_NIGHTLY=$(git show HEAD:"$FILE" | grep '"Nightly Building"' || echo "")
# Imposta i flag per i cambiamenti Release:
if [ "$OLD_RELEASE" != "$NEW_RELEASE" ]; then
echo "release_changed=true" >> "$GITHUB_OUTPUT"
else
echo "release_changed=false" >> "$GITHUB_OUTPUT"
fi
# Imposta i flag per i cambiamenti Nightly:
if [ "$OLD_NIGHTLY" != "$NEW_NIGHTLY" ]; then
echo "nightly_changed=true" >> "$GITHUB_OUTPUT"
else
echo "nightly_changed=false" >> "$GITHUB_OUTPUT"
fi
# Job per creare il build Release:
release_build:
needs: check_changes
if: needs.check_changes.outputs.release_changed == 'true'
runs-on: ubuntu-24.04
steps:
# Checkout del repository:
- uses: actions/checkout@v4

# Carica i file della Release come artifact:
- name: Upload release content
uses: actions/upload-artifact@v4
with:
name: Skyblock_CE_Latest
# Include tutti i file tranne quelli specificati:
path: |
.
!.git/
!.github/
!.gitignore
!Resources Pack/
!crowdin.yml
!spyglass.json
!*.zip
!.DS_Store
if-no-files-found: error
retention-days: 60

# Job per creare il build Nightly:
nightly_build:
needs: check_changes
if: needs.check_changes.outputs.nightly_changed == 'true'
runs-on: ubuntu-24.04
steps:
# Checkout del repository:
- uses: actions/checkout@v4

# Carica i file Nightly come artifact:
- name: Upload nightly content
uses: actions/upload-artifact@v4
with:
name: Skyblock_CE_Nightly_Snapshots
# Include tutti i file tranne quelli specificati:
path: |
.
!.git/
!.github/
!.gitignore
!Resources Pack/
!crowdin.yml
!spyglass.json
!*.zip
!.DS_Store
if-no-files-found: error
retention-days: 60
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ function skyblock:structures/generated_biome
function skyblock_legacy:skyblock_legacy_setup
function skyblock:skyblock_test_setup
function skyblock:versions/changelog/building
function skyblock:versions/changelog/nightly_building
function skyblock:versions/version_pvn
function skyblock:versions/debug
function skyblock:multiplayer_setup
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@

"Release Versions": "6.0.0 [The Removal Update]",

"Release Building": "JE-1.21/1.21.1-6.0.0-Skyblock_Classic_Edition:6.0.0",
"Release Building": "JE-1.21/1.21.1-6.0.0-Skyblock_Classic_Edition:6.0.0_CItest-2",

"Nightly Building": "JE-1.21/1.21.1-6.0.0-Skyblock_Classic_Edition:NIGHTLY_BUILDING_20.01.2025.21900a_[main]",

"Data_pack": "TRUE",

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#Copyright (C) Loweredgames (Lorenzo Giannini)
#Contacted:<https://github.com/Loweredgames>
#This Source Code Form is subject to the terms of the License.
#NOT OFFICIAL MINECRAFT PRODUCT. NOT APPROVED BY OR ASSOCIATED WITH MOJANG STUDIO.
#READING THE COPYRIGHT (C): <https://www.minecraft.net/en-us/terms>


##NIGHTLY BUILDING VERSION SYSTEM (DA RIMUOVERE TUTTO NELLA 1.22)
bossbar set minecraft:nightly_building visible true
bossbar remove minecraft:nightly_building
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ function skyblock_legacy:legacy_remove/legacy_structures_system

##Function Remove Test (DA RIMUOVERE IN FUTURO)
function skyblock_legacy:legacy_version
function skyblock_legacy:legacy_remove/nightly_building
function skyblock_legacy:legacy_remove/refactoring_scoreboard
function skyblock_legacy:legacy_remove/multiplayer_legacy
scoreboard objectives remove fix_end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ function skyblock:structures/generated_biome
function skyblock_legacy:skyblock_legacy_setup
function skyblock:skyblock_test_setup
function skyblock:versions/changelog/building
function skyblock:versions/changelog/nightly_building
function skyblock:versions/version_pvn
function skyblock:versions/debug
function skyblock:multiplayer_setup
Expand Down
2 changes: 1 addition & 1 deletion spyglass.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"env": {
"gameVersion": "1.21.1",
"gameVersion": "1.21.3",
"permissionLevel": 2
},
"format": {
Expand Down

0 comments on commit 6161273

Please sign in to comment.