Streamline the release process with forgejo actions #74

Merged
linos merged 29 commits from prepare_first_release into main 2024-10-29 21:13:00 +01:00
2 changed files with 27 additions and 2 deletions
Showing only changes of commit 0bed532593 - Show all commits

View file

@ -1,4 +1,3 @@
.distignore
.git
.gitignore
.php_cs
@ -31,4 +30,5 @@ readme.md
SECURITY.md
src
tests
vendor
vendor
.distignore

View file

@ -0,0 +1,25 @@
on:
push:
tags: '*'
jobs:
upload-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Remove Files Listed in .distignore
run: |
if [ -f .distignore ]; then
while IFS= read -r line; do
if [ -n "$line" ] && [ "${line:0:1}" != "#" ]; then
rm -rf "$line"
fi
done < .distignore
fi
- uses: actions/forgejo-release@v1
with:
direction: upload
url: https://code.forgejo.org
release-notes: "MY RELEASE NOTES"