From f437694eeecb30c57801cdd47e9b98c405ac33a8 Mon Sep 17 00:00:00 2001 From: hboo Date: Tue, 11 Jan 2022 23:59:45 -0500 Subject: [PATCH] Remove github actions was i even using it idk we r about to find out --- .github/FUNDING.yml | 2 -- .github/workflows/eleventy_build.yml | 34 ---------------------------- 2 files changed, 36 deletions(-) delete mode 100644 .github/FUNDING.yml delete mode 100644 .github/workflows/eleventy_build.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index 9c56567..0000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,2 +0,0 @@ -# These are supported funding model platforms -open_collective: 11ty diff --git a/.github/workflows/eleventy_build.yml b/.github/workflows/eleventy_build.yml deleted file mode 100644 index 6bc8686..0000000 --- a/.github/workflows/eleventy_build.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: Eleventy Build - - -on: - push: - branches: - - main - -jobs: - deploy: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - - - name: Setup Node - uses: actions/setup-node@v1 - with: - node-version: '10.x' - - - - run: npm ci - - - run: npm run build - - - - name: Deploy - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - - publish_dir: ./dist - -