We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad15b0b commit 57ef864Copy full SHA for 57ef864
1 file changed
.github/workflows/release-and-deploy.yml
@@ -3,7 +3,7 @@ on:
3
workflow_dispatch:
4
push:
5
tags:
6
- - 'v*.*.*'
+ - "v*.*.*"
7
8
jobs:
9
build-release:
@@ -21,13 +21,13 @@ jobs:
21
22
- uses: actions/setup-node@v1
23
with:
24
- node-version: '14.x'
+ node-version: "14.x"
25
26
- run: npm install
27
28
- name: Build dist/ folder
29
run: NODE_ENV=production npm run build
30
-
+
31
- name: Build release zip archive
32
run: |
33
sudo apt-get install zip
@@ -64,10 +64,10 @@ jobs:
64
needs: build-release
65
66
steps:
67
- - name: Deploy to dev.cssninja.io
+ - name: Deploy to cssninja.io
68
uses: appleboy/ssh-action@master
69
70
- host: dev.cssninja.io
+ host: cssninja.io
71
username: ci
72
key: ${{ secrets.SSH_PRIVATE_KEY }}
73
script_stop: true
0 commit comments