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