From fbab2a46fb9c08aabf8b0e39a16e4434e3c89587 Mon Sep 17 00:00:00 2001 From: etherware-novice <73374039+etherware-novice@users.noreply.github.com> Date: Thu, 20 Mar 2025 20:10:58 -0500 Subject: [PATCH] down the workflow testing rabbit hole again --- .gitea/workflows/ci.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index e124691..b7b2b2e 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -2,12 +2,10 @@ # License: MIT name: Deploy to neocities +run-name: ${{ gitea.actor }} pushing to neocities # only run on changes to main -on: - push: - branches: - - main +on: [push] concurrency: # prevent concurrent deploys doing strange things group: deploy-to-neocities @@ -19,13 +17,13 @@ jobs: steps: - name: checkout - uses: actions/checkout@v1 + uses: actions/checkout@v4 - name: build jekyll - uses: actions/jekyll-build-pages@v1 + uses: actions/jekyll-build-pages@v1.0.13 - name: Deploy to neocities - uses: bcomnes/deploy-to-neocities@v1 + uses: bcomnes/deploy-to-neocities@v3.0.2 with: api_token: ${{ secrets.NEOCITIES_API_KEY }} cleanup: false