Update .gitea/workflows/build.yaml
All checks were successful
Release Version / build (push) Successful in 8s

This commit is contained in:
matu6968 2024-09-29 13:01:03 +02:00
parent 20c9b45561
commit 915245e9da

View File

@ -18,16 +18,6 @@ jobs:
with:
go-version: '1.23.1'
- name: Check if main.go was modified
id: check_main_go
run: |
git fetch origin main
if git diff --name-only HEAD origin/main | grep -q 'main.go'; then
echo "main_go_modified=true" >> $GITHUB_ENV
else
echo "main_go_modified=false" >> $GITHUB_ENV
fi
- name: Build Go binary for Linux
if: env.main_go_modified == 'true'
run: |