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 95e81ea commit 8675dd1Copy full SHA for 8675dd1
.github/workflows/deploy-env-public.yml
@@ -0,0 +1,25 @@
1
+on:
2
+ push:
3
+ branches:
4
+ - master
5
+name: Deploy@Public
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: unmus/public/wordpress/wp-content/plugins/tootpress/
21
+ exclude: |
22
+ **/.git*
23
+ **/.git*/**
24
+ readme.md
25
+ LICENSE
0 commit comments