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 478f62f commit ba89280Copy full SHA for ba89280
.github/workflows/deploy.yml
@@ -0,0 +1,18 @@
1
+name: Deploy on Merge to Dev
2
+on:
3
+ push:
4
+ branches:
5
+ - covrize/cicd
6
+jobs:
7
+ deploy:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Checkout code
11
+ uses: actions/checkout@v4
12
+ - name: Setup environment
13
+ run: |
14
+ echo "Setting up the environment"
15
+ - name: Execute command after merge
16
17
+ echo "Code merged into dev. Running deployment..."
18
+ ./deploy.sh
deploy.sh
@@ -0,0 +1 @@
+npm run deploy:test
0 commit comments