aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mssola@mssola.com>2026-07-22 12:10:32 +0200
committerMiquel Sabaté Solà <mssola@mssola.com>2026-07-22 12:10:32 +0200
commit4e7ad84558d8e8322c9ca073af564e347c7ae7c9 (patch)
treedeb569e549d55914744ba4cd28fbdcf0bba26188 /.github/workflows
parent02ef8f6feffa3fbcd9066f459281702d82bb48a4 (diff)
downloadjo.mssola.com-4e7ad84558d8e8322c9ca073af564e347c7ae7c9.tar.gz
jo.mssola.com-4e7ad84558d8e8322c9ca073af564e347c7ae7c9.zip
Remove outdated .github directoryHEADmain
Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml52
1 files changed, 0 insertions, 52 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
deleted file mode 100644
index a01af44..0000000
--- a/.github/workflows/ci.yml
+++ /dev/null
@@ -1,52 +0,0 @@
-name: CI
-
-on:
- push:
- branches: [main]
- pull_request:
- branches: [main]
-
-env:
- JO_SUBPATH: "/"
-
-jobs:
- build:
- runs-on: ubuntu-latest
-
- steps:
- - uses: actions/checkout@v4
-
- - name: Set up Ruby
- uses: ruby/setup-ruby@v1
-
- - name: "Build site"
- run: bash -c scripts/build.sh
-
- - name: "Create tarball"
- run: tar czvf site.tar.gz build
-
- - name: "Upload tarball"
- uses: appleboy/scp-action@master
- with:
- host: ${{ secrets.HOST }}
- username: ${{ secrets.USERNAME }}
- port: ${{ secrets.PORT }}
- key: ${{ secrets.KEY }}
- passphrase: ${{ secrets.PASSPHRASE }}
- source: "site.tar.gz"
- target: "tmp"
-
- - name: "Update file system"
- uses: appleboy/ssh-action@master
- with:
- host: ${{ secrets.HOST }}
- username: ${{ secrets.USERNAME }}
- port: ${{ secrets.PORT }}
- key: ${{ secrets.KEY }}
- passphrase: ${{ secrets.PASSPHRASE }}
- script: |
- cd tmp
- tar xzvf site.tar.gz
- rm -rf ${{ secrets.DEST }}/*
- cp -r build/* ${{ secrets.DEST }}/
- rm -r build site.tar.gz