From 5d69219d7106e27d3fd6ce49ae5db6417d8c8aaa Mon Sep 17 00:00:00 2001 From: Audrey Jensen Date: Tue, 13 Aug 2024 15:10:42 -0500 Subject: [PATCH] testing repo pull --- .gitea/workflows/production-deploy.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitea/workflows/production-deploy.yaml diff --git a/.gitea/workflows/production-deploy.yaml b/.gitea/workflows/production-deploy.yaml new file mode 100644 index 0000000..8579bc0 --- /dev/null +++ b/.gitea/workflows/production-deploy.yaml @@ -0,0 +1,17 @@ +name: Gitea Actions Demo +run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 +on: + push: + branches: [ $default-branch ] + +jobs: + Deploy: + runs-on: intranet + steps: + - run: echo "Pulling latest production code to C:\Symfony" + - name: Check out repository code + uses: actions/checkout@v4 + - name: Copy files to project dir + run: | + mkdir C:\SymfonyRunner + xcopy /E /I . C:\SymfonyRunner \ No newline at end of file