From cd29dbc3967cf4614c012ea34b2915c7dff7f0d4 Mon Sep 17 00:00:00 2001 From: etherware-novice <73374039+etherware-novice@users.noreply.github.com> Date: Thu, 18 Jul 2024 21:17:00 -0500 Subject: [PATCH] hopefully last change? --- .github/workflows/ci.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..1fe2523 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,28 @@ +# Author: Bret Comnes +# License: MIT + +name: Deploy to neocities + +# only run on changes to main +on: + push: + branches: + - main + +concurrency: # prevent concurrent deploys doing strange things + group: deploy-to-neocities + cancel-in-progress: true + +jobs: + deploy: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + # When the dist_dir is ready, deploy it to neocities + - name: Deploy to neocities + uses: bcomnes/deploy-to-neocities@v1 + with: + api_token: ${{ secrets.NEOCITIES_API_KEY }} + cleanup: true + dist_dir: public \ No newline at end of file