From 6067cf79bc65662c12d1b9ea2d104a374c4b04d5 Mon Sep 17 00:00:00 2001 From: Dan Jones Date: Thu, 6 Nov 2025 16:14:37 -0600 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5=20No=20longer=20deploy=20with=20Ci?= =?UTF-8?q?rcleCI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .circleci/config.yml | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index c20d1ce..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,40 +0,0 @@ -version: 2 -jobs: - build: - branches: - only: [master] - working_directory: /tmp/danielrayjones - docker: - - image: hugomods/hugo:0.120.4 - steps: - - add_ssh_keys: - fingerprints: - - "23:c0:43:4c:ae:5b:92:a6:5b:79:92:6b:ca:62:59:8d" - - checkout - - run: - name: Configure git user - command: | - git config --global user.email "ci@danielrayjones.com" - git config --global user.name "Circle CI" - - run: - name: Install dependencies - command: | - apk add openssh - git submodule init - git submodule update - - run: - name: Creating build directory - command: git clone -b gh-pages `git remote get-url origin` public - - run: - name: Build site - command: hugo --cleanDestinationDir - - run: - name: No Jekyll - command: touch public/.nojekyll - - run: - name: Deploy site - command: | - cd public - git add -A - git commit -m "$(date --iso-8601=seconds) Deploy new site" - git push