From 42d55255473ab2ffe6b07162ba2e2e17fc55d423 Mon Sep 17 00:00:00 2001 From: Travis DePrato <773453+travigd@users.noreply.github.com> Date: Wed, 9 Sep 2020 17:56:54 -0700 Subject: [PATCH] Delete fetch_data.yml --- .github/workflows/fetch_data.yml | 35 -------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 .github/workflows/fetch_data.yml diff --git a/.github/workflows/fetch_data.yml b/.github/workflows/fetch_data.yml deleted file mode 100644 index 9f6e92a9..00000000 --- a/.github/workflows/fetch_data.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Fetch Data -on: - schedule: - - cron: '40 * * * *' # every hour - push: - paths: - - '.github/workflows/fetch_data.yml' - -jobs: - fetch_data: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Cache Julia Packages - uses: actions/cache@v2 - env: - cache-name: cache-julia-pkgs - with: - path: ~/.julia - key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }} - restore-keys: | - ${{ runner.os }}-build-${{ env.cache-name }}- - ${{ runner.os }}-build- - ${{ runner.os }}- - - name: Update Data - run: | - cd data - julia --project -e 'import Pkg; Pkg.instantiate(); include("fetch.jl");' - cd .. - env: - PRETALX_TOKEN: ${{ secrets.PRETALX_TOKEN }} - - name: Commit and Push - uses: stefanzweifel/git-auto-commit-action@v4 - with: - commit_message: fetch data