Skip to content

Commit 0ff19c3

Browse files
committed
forge release
1 parent e67cdfc commit 0ff19c3

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/forge-release.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Deploy to Laravel Forge on Release
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
jobs:
8+
deploy:
9+
name: Trigger Laravel Forge Deployment
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Call Laravel Forge Deploy Hook
14+
run: |
15+
curl -X POST "${{ secrets.FORGE_DEPLOY_URL }}"

0 commit comments

Comments
 (0)