From af0d34ff9221ae09e88fe129e02fc105fae6ff04 Mon Sep 17 00:00:00 2001 From: Jakob Borg Date: Mon, 20 Nov 2023 11:24:33 +0100 Subject: [PATCH] Publish automatically --- .github/workflows/publish-web.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/publish-web.yaml diff --git a/.github/workflows/publish-web.yaml b/.github/workflows/publish-web.yaml new file mode 100644 index 0000000..62fe72b --- /dev/null +++ b/.github/workflows/publish-web.yaml @@ -0,0 +1,21 @@ +name: Publish web +on: + push: + workflow_dispatch: +jobs: + publish: + runs-on: ubuntu-latest + name: Publish web + environment: publish + steps: + - name: Push to Spaces + uses: docker://docker.io/rclone/rclone:latest + env: + RCLONE_CONFIG_SPACES_TYPE: s3 + RCLONE_CONFIG_SPACES_PROVIDER: DigitalOcean + RCLONE_CONFIG_SPACES_ACCESS_KEY_ID: ${{ secrets.SPACES_KEY }} + RCLONE_CONFIG_SPACES_SECRET_ACCESS_KEY: ${{ secrets.SPACES_SECRET }} + RCLONE_CONFIG_SPACES_ENDPOINT: ams3.digitaloceanspaces.com + RCLONE_CONFIG_SPACES_ACL: public-read + with: + args: sync --exclude .git --exclude .gitignore --delete-excluded . spaces:syncthing/web