Skip to content

Commit b056a17

Browse files
committed
add deployment environment for develop
1 parent c19b2d9 commit b056a17

File tree

1 file changed

+21
-9
lines changed

1 file changed

+21
-9
lines changed

.github/workflows/npm-build-and-deploy-develop.yml

+21-9
Original file line numberDiff line numberDiff line change
@@ -9,28 +9,40 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111

12-
strategy:
13-
matrix:
14-
node-version: [16.13.1]
15-
1612
steps:
1713
- uses: actions/checkout@v2
18-
- name: Use Node.js ${{ matrix.node-version }}
14+
- name: Use Node.js 16.13.1
1915
uses: actions/setup-node@v1
2016
with:
21-
node-version: ${{ matrix.node-version }}
17+
node-version: 16.13.1
2218
- run: corepack enable
2319
- run: yarn install --network-concurrency 1 --frozen-lockfile
2420
- run: yarn run build-hash
21+
- uses: actions/upload-artifact@v3
22+
with:
23+
name: build-hash-binaries
24+
path: build/hash-history
25+
26+
deployment:
27+
needs: build
28+
runs-on: ubuntu-latest
29+
environment:
30+
name: ${{ github.ref_name }}
31+
32+
steps:
33+
- uses: actions/download-artifact@v3
34+
with:
35+
name: build-hash-binaries
36+
path: build/hash-history
2537
- name: Create CNAME file
2638
uses: finnp/create-file-action@master
2739
env:
2840
FILE_NAME: build/hash-history/CNAME
29-
FILE_DATA: develop.bitshares.org
30-
- name: Deploy
41+
FILE_DATA: ${{ secrets.DEPLOYMENT_URL }}
42+
- name: Push to target repository
3143
uses: s0/git-publish-subdir-action@master
3244
env:
33-
REPO: [email protected]:bitshares/develop.bitshares.org.git
45+
REPO: [email protected]:bitshares/${{ secrets.DEPLOYMENT_REPOSITORY }}.git
3446
BRANCH: master
3547
FOLDER: build/hash-history
3648
SSH_PRIVATE_KEY: ${{ secrets.AUTOMATION_UI_DEPLOYMENT_KEY }}

0 commit comments

Comments
 (0)