From bc35335539c4a537de83d06b7b3f5ca8c73b205f Mon Sep 17 00:00:00 2001 From: Johannes Date: Sat, 26 Feb 2022 15:49:09 +0100 Subject: [PATCH] test gitlab action --- .github/workflows/main.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/main.yml 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