Никита Круглицкий e5d0c2464d
Some checks failed
Deploy / build-and-deploy (push) Failing after 5s
ci/cd
2025-07-31 06:01:42 +06:00

28 lines
531 B
YAML

name: Deploy
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: LS
run: cd / && cat .dockerenv
- name: Test SSH access
run: ssh -Tv git@koptilnya.xyz
- name: Checkout code
uses: actions/checkout@v4
with:
ssh-key: '${{ secrets.SSH_PRIVATE_KEY }}'
ssh-strict: false
persist-credentials: false
- name: Install dependencies
run: |
yarn install
yarn build