23 lines
377 B
YAML
23 lines
377 B
YAML
name: Build and test
|
|
run-name: ${{ gitea.actor }} is building and testing nginx reverse proxy configuration
|
|
on: [push]
|
|
|
|
name: Copy Files
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
copy:
|
|
runs-on: [self-hosted]
|
|
|
|
steps:
|
|
- name: Clone Repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Copy Files
|
|
run: |
|
|
cp -r ./html/* /www-stg/html
|