Skip to content

Merge remote-tracking branch 'origin/master' into dev #416

Merge remote-tracking branch 'origin/master' into dev

Merge remote-tracking branch 'origin/master' into dev #416

Workflow file for this run

name: Run on dev
on:
push:
branches:
- 'dev'
jobs:
build:
name: Build Artifacts
runs-on: ubuntu-latest
timeout-minutes: 40
steps:
- name: Build Artifacts
uses: actions/checkout@v3
- name: Init Node.js
uses: actions/setup-node@v1
with:
node-version: 19.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
yarn run prei18n:extract
yarn run i18n:extract
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 to Dev
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: /var/www/dev0
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
privateKey: ${{ secrets.KEY }}