2 Commits

Author SHA1 Message Date
153874fa8a Fix
Some checks failed
Build and Deploy on Tag / build-arch (push) Failing after 3s
2026-04-20 04:28:45 -05:00
9390084abe Fix
Some checks failed
Build and Deploy on Tag / build-arch (push) Has been cancelled
2026-04-20 02:12:15 -05:00
2 changed files with 4 additions and 1 deletions

View File

@@ -6,6 +6,7 @@ on:
env:
PACKAGE_AND_BREW: ${{ secrets.PACKAGE_AND_BREW }}
VERSION: ${{ gitea.ref_name }}
jobs:
build-arch:
@@ -13,10 +14,11 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
ref: "master"
repository: "tesses50/tesses-tap.git"
token: ${{ env.PACKAGE_AND_BREW }}
- run: |
echo "THIS IS COOL" > file
bash ../edit-formula.sh
git config user.name "Tesses Gitea Bot"
git config user.email "noreply@tesses.net"
git add .

1
main.c
View File

@@ -5,5 +5,6 @@ const char* VERSE = "John 3:16 says: For God so loved the world that he gave his
int main(int argc, char** argv)
{
printf("%s",VERSE);
printf("GOD's NOT DEAD\n");
return 0;
}