We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 129a102 commit 227a748Copy full SHA for 227a748
.github/workflows/deploy-env-dev.yml
@@ -0,0 +1,25 @@
1
+on:
2
+ push:
3
+ branches:
4
+ - develop
5
+name: Deploy@Dev
6
+jobs:
7
+ web-deploy:
8
+ name: Deploy
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Get latest code
12
+ uses: actions/checkout@v3
13
+ - name: FTP Deploy
14
+ uses: SamKirkland/[email protected]
15
+ with:
16
+ server: unmus.de
17
+ username: ${{ secrets.FTP_USER_GITHUBDEPLOY }}
18
+ password: ${{ secrets.FTP_PASSWORD_GITHUBDEPLOY }}
19
+ protocol: ftp
20
+ server-dir: ${{ vars.FTP_PATH_DEV }}
21
+ exclude: |
22
+ **/.git*
23
+ **/.git*/**
24
+ readme.md
25
+ LICENSE
0 commit comments