diff --git a/.gitea/workflows/deploy-dev.yaml b/.gitea/workflows/deploy-dev.yaml new file mode 100644 index 0000000..3043b64 --- /dev/null +++ b/.gitea/workflows/deploy-dev.yaml @@ -0,0 +1,22 @@ +name: Copy Files to Samba Share dev +on: + push: + branches: + - dev + +jobs: + copy_files: + name: Copy Files + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Install smbclient + run: | + apt-get update + apt-get install -y smbclient + + - name: Copy + run: | + smbclient //192.168.129.245/arne -U "${{ secrets.SAMBA_USER }}" "${{ secrets.SAMBA_PASSWORD }}" -c "cd \"letsencrypt/config/www/dev\"; lcd \".\"; prompt; recurse; mput *"