diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..070edd88 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,14 @@ +on: push +name: Publish tft file to http webserver +jobs: + deployment: + runs-on: ubuntu-latest + steps: + - name: Deploy Stage + uses: fjogeleit/http-request-action@master + with: + url: ${{ secrets.UPLOAD_URL }} + method: 'POST' + username: ${{ secrets.UPLOAD_USER }} + password: ${{ secrets.UPLOAD_PASSWORD }} + file: "HMI/nspanel.tft" \ No newline at end of file