From 9136a1db194a0b9e6165c84d4bc3bc9a8cf606b8 Mon Sep 17 00:00:00 2001 From: Toby Date: Sun, 3 Sep 2023 11:42:06 -0700 Subject: [PATCH] ci: publish scripts --- .github/workflows/scripts.yml | 22 +++++++++++++++++++ .../install_server.sh | 0 2 files changed, 22 insertions(+) create mode 100644 .github/workflows/scripts.yml rename install_server.sh => scripts/install_server.sh (100%) mode change 100755 => 100644 diff --git a/.github/workflows/scripts.yml b/.github/workflows/scripts.yml new file mode 100644 index 0000000..a4c18ed --- /dev/null +++ b/.github/workflows/scripts.yml @@ -0,0 +1,22 @@ +on: + push: + branches: + - master + +jobs: + publish: + runs-on: ubuntu-latest + permissions: + contents: read + deployments: write + name: Publish scripts to Cloudflare Pages + steps: + - name: Publish to Cloudflare Pages + uses: cloudflare/pages-action@v1 + with: + apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} + accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} + projectName: hy2scripts + directory: scripts + gitHubToken: ${{ secrets.GITHUB_TOKEN }} + branch: main diff --git a/install_server.sh b/scripts/install_server.sh old mode 100755 new mode 100644 similarity index 100% rename from install_server.sh rename to scripts/install_server.sh