diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..8753ff7 --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,15 @@ +name: Build Project +run-name: Create release for project ${{ gitea.project_name }} +on: + push: + tags: + - '*' + +jobs: + build-release: + runs-on: ubuntu-latest + steps: + - name: Create release + uses: https://gitea.com/actions/gitea-release-action@main + with: + prerelease: ${{ !startsWith(gitea.ref_name, 'v') }} \ No newline at end of file