Skip to content

Commit

Permalink
🔧 ci(github-actions): add gitea workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
PunGrumpy committed Dec 7, 2023
1 parent cc8659c commit 329befb
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/gitea.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: 🍵 Gitea
on:
push:
branches:
- 'Year*-*'
jobs:
commit:
name: 🫖 Commit to Gitea
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout
uses: actions/checkout@v4
- name: 📝 Commit
id: commit
run: |
git config --global user.name 'PunGrumpy'
git config --global user.email ${{ secrets.EMAIL_GITEA }}
git remote add gitea https://gitea.com/Mephisto/KMITL.git
git push gitea HEAD:${{ github.ref }}

0 comments on commit 329befb

Please sign in to comment.