Skip to content

update translations #24

update translations

update translations #24

Workflow file for this run

name: Deploy app
on:
push:
branches:
- 'master'
jobs:
build:
name: Build Artifacts for Test
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Build Artifacts
uses: actions/checkout@v3
- name: Init Node.js
uses: actions/setup-node@v1
with:
node-version: 16.x
- name: Up Caches
uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Generate deployable artifacts
run: |
yarn
CI=false yarn build
- name: Store Artifacts
uses: actions/upload-artifact@v3
with:
name: ${{ github.sha }}
path: build
retention-days: 1
deploy:
needs: build
name: Deploy
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Extract Artifacts
uses: actions/download-artifact@v3
with:
name: ${{ github.sha }}
path: ~/build
- name: Deploy to host
uses: garygrossgarten/github-action-scp@release
with:
local: /home/runner/build
remote: /data/explorer/front/build
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
privateKey: ${{ secrets.DEPLOY_KEY }}