22 lines
469 B
YAML
22 lines
469 B
YAML
|
name: work.suroh.tk deploy
|
||
|
run-name: ${{ github.action_repository }} is being built and deployed
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- 'main'
|
||
|
jobs:
|
||
|
build-deploy:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Clone code to runner
|
||
|
uses: actions/checkout@v4
|
||
|
|
||
|
- name: Move to directory
|
||
|
run: cd ${{ github.workspace }}
|
||
|
|
||
|
- name: Building dependencies
|
||
|
run: npm ci
|
||
|
|
||
|
- name: Check deployment directory
|
||
|
run: ls -lh /var/www/
|