2 Commits

Author SHA1 Message Date
fca8d5878a Fix
Some checks failed
Build and Deploy on Tag / build-arch (push) Failing after 0s
2026-04-20 02:06:57 -05:00
d832689911 Add inspiring message (thats an understatement) 2026-04-19 21:58:02 -05:00
2 changed files with 26 additions and 0 deletions

24
.gitea/workflows/tag.yaml Normal file
View File

@@ -0,0 +1,24 @@
name: Build and Deploy on Tag
on:
push:
tags:
- "v*"
env:
PACKAGE_AND_BREW: ${{ secrets.PACKAGE_AND_BREW }}
jobs:
build-arch:
runs-on: arch-builder
steps:
- uses: actions/checkout@v4
with:
repository: "https://git.tesses.org/tesses50/tesses-tap.git"
token: ${{ env.PACKAGE_AND_BREW }}
- run: |
echo "THIS IS COOL" > file
git config user.name "Tesses Gitea Bot"
git config user.email "noreply@tesses.net"
git add .
git commit -m "generated"
git push

View File

@@ -3,3 +3,5 @@ cmake_minimum_required(VERSION 3.16)
project(my-first-brew)
add_executable(my-first-brew main.c)
install(TARGETS my-first-brew DESTINATION bin)