From 536caa0142fb75d13afe4ebf8a1018e10fd70499 Mon Sep 17 00:00:00 2001 From: Raphael Kabo Date: Wed, 23 Apr 2025 11:11:19 +0100 Subject: Switch donations card to GitHub Sponsors --- views/home.handlebars | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/views/home.handlebars b/views/home.handlebars index 700d875..d5fdb81 100755 --- a/views/home.handlebars +++ b/views/home.handlebars @@ -59,13 +59,11 @@ href="https://github.com/lowercasename/gathio/issues">tracker if you encounter any issues.

{{#if showKofi}} -
-
-

If you find yourself using and enjoying Gathio, consider buying Raphael a coffee. It'll help keep the project - and main site running!

- - +
+
+

+ If you find yourself using and enjoying Gathio, consider supporting Raphael via GitHub Sponsors. It'll help keep the project and main site running! +

{{/if}} -- cgit v1.2.3 From 97807be0cdd2cb0381a478517abedfd3dd0a73b8 Mon Sep 17 00:00:00 2001 From: Raphael Kabo Date: Wed, 23 Apr 2025 11:22:52 +0100 Subject: Remove deploy workflow --- .github/workflows/deploy.yaml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/deploy.yaml diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml deleted file mode 100644 index 1d0330a..0000000 --- a/.github/workflows/deploy.yaml +++ /dev/null @@ -1,23 +0,0 @@ -name: CI / Deploy -on: - workflow_dispatch: - push: - branches: - - main - -jobs: - deploy: - runs-on: ubuntu-latest - steps: - - name: Set up known_hosts file - run: | - mkdir -p ~/.ssh/ && touch ~/.ssh/known_hosts - ssh-keyscan ${{ secrets.SSH_HOST }} >> ~/.ssh/known_hosts - - - uses: webfactory/ssh-agent@v0.9.1 - with: - ssh-private-key: ${{ secrets.SSH_KEY }} - - - name: Run deploy script - run: | - ssh -o StrictHostKeyChecking=no ${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }} 'cd ${{ secrets.DEPLOY_PATH }} && ./deploy.sh' -- cgit v1.2.3 From 31abcf01165147b9ace7eb6a4dec66d737599218 Mon Sep 17 00:00:00 2001 From: Raphael Kabo Date: Wed, 23 Apr 2025 13:12:37 +0100 Subject: Bump version to 1.5.2 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 26d1d00..15f5f48 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gathio", - "version": "1.5.0", + "version": "1.5.2", "description": "A simple, federated, privacy-first event hosting platform", "main": "index.js", "type": "module", @@ -62,4 +62,4 @@ "nodemon": "^2.0.22", "prettier": "^3.2.5" } -} \ No newline at end of file +} -- cgit v1.2.3