From 155052a256708fa88adc3fcc6f8045f186e3ee51 Mon Sep 17 00:00:00 2001 From: Florian Brinker Date: Fri, 20 Sep 2024 03:27:15 +0200 Subject: [PATCH] Change demo --- .gitea/workflows/0_linting.yaml | 12 ++++++++++ .gitea/workflows/1_release.yaml | 41 +++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 .gitea/workflows/0_linting.yaml create mode 100644 .gitea/workflows/1_release.yaml diff --git a/.gitea/workflows/0_linting.yaml b/.gitea/workflows/0_linting.yaml new file mode 100644 index 0000000..c01ba33 --- /dev/null +++ b/.gitea/workflows/0_linting.yaml @@ -0,0 +1,12 @@ +name: Linting +run-name: ${{ gitea.actor }} is checking the LUA code 🚀 +on: [push] + +jobs: + Luacheck: + runs-on: ubuntu-latest + steps: + - name: Check out repository code + uses: actions/checkout@v4 + - name: Luacheck linter + uses: lunarmodules/luacheck@v1 \ No newline at end of file diff --git a/.gitea/workflows/1_release.yaml b/.gitea/workflows/1_release.yaml new file mode 100644 index 0000000..f80ebe9 --- /dev/null +++ b/.gitea/workflows/1_release.yaml @@ -0,0 +1,41 @@ +name: Build & Release +run-name: ${{ gitea.actor }} is creating a new release 🚀 +on: [push] + #push: + #tags: + # - '**' + +jobs: + Build: + runs-on: ubuntu-latest + steps: + - name: Check out repository code + uses: actions/checkout@v4 + with: + path: sources + - name: Delete unneeded files/dirs + run: | + rm -rf sources/.git + rm -rf sources/.gitea + rm -rf sources/screenshots + rm -f sources/.drone.status + rm -f sources/.drone.yml + rm -f sources/.luacheckrc + - name: Set Version and AddonVersion + run: | + echo "Version: $GITHUB_REF_NAME" + export VERSION=$GITHUB_REF_NAME + export ADDON_VERSION=$(echo $GITHUB_REF_NAME | sed -E 's/(0|)\.//g') + sed -i "s/0.123456789/$VERSION/g" sources/AchievementInfoCommon.lua + sed -i "s/0.123456789/$VERSION/g" sources/AchievementInfo.txt + sed -i "s/0.123456789/$ADDON_VERSION/g" sources/AchievementInfo.txt + - name: Rename and zip + run: | + mv sources AchievementInfo + zip -r "AchievementInfo-$GITHUB_REF_NAME.zip" ./AchievementInfo + - name: Upload artifact + uses: actions/upload-artifact@v3 + with: + name: build-artifact + path: AchievementInfo*.zip + retention-days: 3 \ No newline at end of file