mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
20 lines
362 B
YAML
20 lines
362 B
YAML
name: 'Deploy on push'
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
forge-deploy:
|
|
name: 'Laravel Forge Deploy'
|
|
runs-on: ubuntu-latest
|
|
environment: production
|
|
|
|
steps:
|
|
# Trigger Laravel Forge Deploy
|
|
- name: Deploy
|
|
uses: jbrooksuk/laravel-forge-action@v1.0.2
|
|
with:
|
|
trigger_url: ${{ secrets.TRIGGER_URL }}
|