elderscrolls-addon-achievem.../.gitea/workflows/workflow.yaml
Florian Brinker e5c49e970a
All checks were successful
Workflow / Linting (push) Successful in 10s
Workflow / Release (push) Successful in 9s
continuous-integration/drone/push Build is passing
1 workflow to rule them all
2024-09-20 13:15:06 +02:00

57 lines
1.7 KiB
YAML

name: Workflow
run-name: ${{ gitea.actor }} is lintingn and on tags creating a new release 🚀
on: [push]
jobs:
Linting:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Run Luacheck linter
uses: lunarmodules/luacheck@v1
Release:
needs: [Linting]
if: ${{ ! startsWith(github.ref, 'refs/tags/') }}
runs-on: ubuntu-latest
env:
VERSION: ${{ gitea.ref_name }}
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: $VERSION"
export ADDON_VERSION=$(echo $VERSION | 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-$VERSION.zip" ./AchievementInfo
- name: Create release
id: create_release
uses: akkuman/gitea-release-action@v1
with:
token: ${{ secrets.token }}
name: "AchievementInfo $VERSION"
tag_name: "$VERSION"
body_path: AchievementInfo/CHANGELOG.md
draft: true
prerelease: false
sha256sum: true
files: |-
*.zip