mirror of
https://github.com/billsonnn/nitro-react.git
synced 2024-11-23 14:40:50 +01:00
33 lines
722 B
YAML
33 lines
722 B
YAML
name: Deploy Bundle@dev
|
|
|
|
on:
|
|
push:
|
|
branches: [ dev ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: self-hosted
|
|
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v2
|
|
- name: Install & Build
|
|
run: |
|
|
npm run build:prod
|
|
- name: Archive Artifacts
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
path: |
|
|
build
|
|
- name: Upload Artifacts
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
host: ${{ secrets.HOST }}
|
|
port: ${{ secrets.PORT }}
|
|
username: ${{ secrets.USERNAME }}
|
|
key: ${{ secrets.SSHKEY }}
|
|
path: |
|
|
build
|
|
target: "/var/www/nitrots.co/domains/prod.nitrots.co/html"
|