From 4e7ad84558d8e8322c9ca073af564e347c7ae7c9 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Wed, 22 Jul 2026 12:10:32 +0200 Subject: Remove outdated .github directory MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miquel Sabaté Solà --- .github/workflows/ci.yml | 52 ------------------------------------------------ 1 file changed, 52 deletions(-) delete mode 100644 .github/workflows/ci.yml (limited to '.github') 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 -- cgit v1.2.3