22 lines
362 B
YAML
22 lines
362 B
YAML
name: Deploy
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build-and-deploy:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: 'git@git.koptilnya.xyz:alsaze/paxton-front.git'
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
yarn install
|
|
yarn build
|