From f69b67f073d0aa770577f7c2965159f249a5e6fc Mon Sep 17 00:00:00 2001 From: Andros Fenollosa Date: Tue, 17 Aug 2021 00:42:11 +0200 Subject: [PATCH] Delete .github/workflows directory --- .github/workflows/diary.yml | 39 ------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 .github/workflows/diary.yml diff --git a/.github/workflows/diary.yml b/.github/workflows/diary.yml deleted file mode 100644 index d5d48ad..0000000 --- a/.github/workflows/diary.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: build-pack - -on: - push: - branches: - - self - schedule: - - cron: "21 6 * * *" - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - name: Prepare branch - run: | - git fetch --all - git checkout ${{ github.head_ref }} - - name: Install Lein - run: | - sudo apt update - sudo apt install leiningen - - name: Build - run: | - lein run - - name: Upload new dist - run: | - rm -rf docs/index.html docs/static - mv dist/index.html docs - mv dist/static docs/ - git config user.email "action@github.com" - git config user.name "GitHub Action" - git add docs/index.html - git add docs/static/ - git commit -m "$(date +"%F")" - git push origin self -