We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5bac43 commit a8bcd22Copy full SHA for a8bcd22
.github/workflows/deploy.yml
@@ -1,4 +1,6 @@
1
name: '✅ [PROD] Deploy web version'
2
+run-name: Deploy Web app to Production ${{ github.ref_name }}
3
+
4
on:
5
workflow_dispatch:
6
@@ -14,7 +16,7 @@ env:
14
16
jobs:
15
17
build_and_deploy:
18
runs-on: ubuntu-latest
-
19
+ if: ${{github.ref_type == 'tag' }}
20
steps:
21
- name: Checkout code
22
uses: actions/checkout@v4
.github/workflows/develop.yml
@@ -1,4 +1,5 @@
name: '👨💻 [DEV] Deploy web version'
+run-name: Deploy Web app to Development ${{ github.ref_name }}
@@ -18,8 +19,6 @@ jobs:
- with:
- ref: develop
23
24
- name: Set up Node.js
25
uses: actions/setup-node@v4
0 commit comments