Files
my-first-brew/.gitea/workflows/tag.yaml
Mike Nolan 153874fa8a
Some checks failed
Build and Deploy on Tag / build-arch (push) Failing after 3s
Fix
2026-04-20 04:28:45 -05:00

27 lines
607 B
YAML

name: Build and Deploy on Tag
on:
push:
tags:
- "v*"
env:
PACKAGE_AND_BREW: ${{ secrets.PACKAGE_AND_BREW }}
VERSION: ${{ gitea.ref_name }}
jobs:
build-arch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: "master"
repository: "tesses50/tesses-tap.git"
token: ${{ env.PACKAGE_AND_BREW }}
- run: |
bash ../edit-formula.sh
git config user.name "Tesses Gitea Bot"
git config user.email "noreply@tesses.net"
git add .
git commit -m "generated"
git push