intranet/.gitea/workflows/production-deploy.yaml
Audrey Jensen 97afd7358b
All checks were successful
Gitea Actions Demo / Deploy (push) Successful in 58s
no strict ssh host
2024-08-13 15:34:39 -05:00

21 lines
534 B
YAML

name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on:
push:
branches:
- master
jobs:
Deploy:
runs-on: intranet
steps:
- run: echo "Pulling latest production code to C:\Symfony"
- name: Check out repository code
uses: actions/checkout@v4
with:
SSH-KEY: ${{secrets.read_key}}
SSH-STRICT: 'false'
- name: Copy files to project dir
run: |
mkdir C:\SymfonyRunner
xcopy /E /I . C:\SymfonyRunner