|
9 | 9 | build:
|
10 | 10 | runs-on: ubuntu-latest
|
11 | 11 |
|
12 |
| - strategy: |
13 |
| - matrix: |
14 |
| - node-version: [16.13.1] |
15 |
| - |
16 | 12 | steps:
|
17 | 13 | - uses: actions/checkout@v2
|
18 |
| - - name: Use Node.js ${{ matrix.node-version }} |
| 14 | + - name: Use Node.js 16.13.1 |
19 | 15 | uses: actions/setup-node@v1
|
20 | 16 | with:
|
21 |
| - node-version: ${{ matrix.node-version }} |
| 17 | + node-version: 16.13.1 |
22 | 18 | - run: corepack enable
|
23 | 19 | - run: yarn install --network-concurrency 1 --frozen-lockfile
|
24 | 20 | - 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 |
25 | 37 | - name: Create CNAME file
|
26 | 38 | uses: finnp/create-file-action@master
|
27 | 39 | env:
|
28 | 40 | 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 |
31 | 43 | uses: s0/git-publish-subdir-action@master
|
32 | 44 | env:
|
33 |
| - REPO: [email protected]:bitshares/develop.bitshares.org.git |
| 45 | + REPO: [email protected]:bitshares/${{ secrets.DEPLOYMENT_REPOSITORY }}.git |
34 | 46 | BRANCH: master
|
35 | 47 | FOLDER: build/hash-history
|
36 | 48 | SSH_PRIVATE_KEY: ${{ secrets.AUTOMATION_UI_DEPLOYMENT_KEY }}
|
0 commit comments