We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5ac59d commit 8e4c054Copy full SHA for 8e4c054
.github/workflows/deploy-to-production.yml
@@ -0,0 +1,14 @@
1
+name: Deploy to production
2
+
3
+on:
4
+ workflow_dispatch:
5
+ release:
6
+ types: [published]
7
8
+jobs:
9
+ deploy:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Webhook request
13
+ run: |
14
+ curl -X GET https://prod.request.network/api/deploy/${{ secrets.EASYPANEL_DEPLOY_KEY_PRODUCTION }}
.github/workflows/deploy-to-staging.yml
+name: Deploy to staging
+ push:
+ branches: [main]
+ curl -X GET https://stage.request.network/api/deploy/${{ secrets.EASYPANEL_DEPLOY_KEY_STAGING }}
0 commit comments