We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31de435 commit 8830df9Copy full SHA for 8830df9
2 files changed
.github/workflows/deploy-dev.yml
@@ -1,5 +1,7 @@
1
name: Deploy to Development Environment
2
3
+concurrency: development
4
+
5
on:
6
# Runs on push to main branch
7
push:
@@ -35,6 +37,7 @@ jobs:
35
37
path: public
36
38
retention-days: 1
39
publish:
40
+ environment: development
41
runs-on: ubuntu-latest
42
needs: build
43
steps:
.github/workflows/deploy-prod.yml
name: Deploy to Production Environment
+concurrency: production
# Can be triggered manually
workflow_dispatch:
@@ -39,6 +41,7 @@ jobs:
retention-days: 8
44
+ environment: production
45
46
47
0 commit comments