mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2025-12-14 12:06:46 +00:00
17 lines
401 B
YAML
17 lines
401 B
YAML
name: Gitea Actions Deploy
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
|
|
Deploy-Master:
|
|
if: ${{ gitea.ref == 'refs/heads/master' }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: echo "Deploying to master branch! Triggered by ${{ gitea.event_name }}."
|
|
- run: echo "Running on ${{ runner.os }} server for branch ${{ gitea.ref }}."
|
|
- run: curl ${{ secrets.DEPLOY_PRODUCTION }}
|