4 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
279a765d01 Fix
Some checks failed
Build and Deploy on Tag / build-arch (push) Has been cancelled
2026-04-20 02:10:01 -05:00
2b52688e95 Fix
Some checks failed
Build and Deploy on Tag / build-arch (push) Failing after 7s
2026-04-20 02:08:54 -05:00
2 changed files with 6 additions and 3 deletions

View File

@@ -6,17 +6,19 @@ on:
env: env:
PACKAGE_AND_BREW: ${{ secrets.PACKAGE_AND_BREW }} PACKAGE_AND_BREW: ${{ secrets.PACKAGE_AND_BREW }}
VERSION: ${{ gitea.ref_name }}
jobs: jobs:
build-arch: build-arch:
runs-on: arch-builder runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:
repository: "https://git.tesses.org/tesses50/tesses-tap.git" ref: "master"
repository: "tesses50/tesses-tap.git"
token: ${{ env.PACKAGE_AND_BREW }} token: ${{ env.PACKAGE_AND_BREW }}
- run: | - run: |
echo "THIS IS COOL" > file bash ../edit-formula.sh
git config user.name "Tesses Gitea Bot" git config user.name "Tesses Gitea Bot"
git config user.email "noreply@tesses.net" git config user.email "noreply@tesses.net"
git add . 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) int main(int argc, char** argv)
{ {
printf("%s",VERSE); printf("%s",VERSE);
printf("GOD's NOT DEAD\n");
return 0; return 0;
} }