fix
This commit is contained in:
parent
50543f97d1
commit
50d8a89cb8
2 changed files with 2 additions and 2 deletions
39
.github/workflows/dtchsyn.yaml
vendored
Normal file
39
.github/workflows/dtchsyn.yaml
vendored
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
on:
|
||||
push:
|
||||
branches:
|
||||
- dev
|
||||
- main
|
||||
|
||||
name: Publish Website
|
||||
jobs:
|
||||
web-deploy:
|
||||
name: Deploy based on branch
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Set destination path based on branch
|
||||
id: set-destination
|
||||
run: |
|
||||
if [[ "${{ github.ref }}" == "refs/heads/main" ]]; then
|
||||
echo "DESTINATION=/LantaeuSSD/dtch/" >> $GITHUB_ENV
|
||||
else
|
||||
echo "DESTINATION=/LantaeuSSD/dtch_dev/" >> $GITHUB_ENV
|
||||
fi
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: SFTP upload
|
||||
uses: Dylan700/sftp-upload-action@latest
|
||||
with:
|
||||
debug: true
|
||||
dry-run: false
|
||||
server: ${{secrets.SYNADDR}}
|
||||
username: ${{secrets.SYNUSR}}
|
||||
password: ${{secrets.SYNPASS}}
|
||||
port: 22
|
||||
uploads: |
|
||||
./ => ${{ env.DESTINATION }}
|
||||
ignore: |
|
||||
.git
|
||||
config.php
|
||||
data/**/*.json
|
||||
Loading…
Add table
Add a link
Reference in a new issue