add swayprop

This commit is contained in:
2025-06-26 19:01:39 +02:00
parent 7829af72ac
commit 8741765c2d
9 changed files with 848 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
name: Create release on tag push
on:
push:
tags:
- '*'
jobs:
build:
name: Create release
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Get release body
run: |
echo "release_body=$(cat CHANGELOG.md)" >> "$GITHUB_ENV"
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '>=1.20.1'
- name: Draft release
uses: https://gitea.com/actions/release-action@main
with:
body: ${{ env.release_body }}
draft: true
api_key: '${{ secrets.RELEASE_TOKEN }}'