Skip to content

index modification

index modification #8

Workflow file for this run

name: Deploy PHP Application
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: self-hosted
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Deploy Application
env:
TARGET_PATH: /var/www/edend12.imtbs-tsp.eu
run: |
find . -path ./.git -prune -o -path ./.github -prune -o -exec cp -R --parents {} $TARGET_PATH \;