From 70e54b6c39e0eaf28bff52020d9758caf90862d1 Mon Sep 17 00:00:00 2001 From: Giuseppe Guarino <40060221+gmguarino@users.noreply.github.com> Date: Mon, 3 Jun 2024 15:00:44 +0200 Subject: [PATCH] Delete .github/workflows/generate-graphs.yaml --- .github/workflows/generate-graphs.yaml | 59 -------------------------- 1 file changed, 59 deletions(-) delete mode 100644 .github/workflows/generate-graphs.yaml diff --git a/.github/workflows/generate-graphs.yaml b/.github/workflows/generate-graphs.yaml deleted file mode 100644 index 160cea2..0000000 --- a/.github/workflows/generate-graphs.yaml +++ /dev/null @@ -1,59 +0,0 @@ -name: Build Graphs - -on: - workflow_dispatch: - # push: - # branches: - # - main - -jobs: - generate: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v2 - with: - python-version: 3.12 - - name: cache poetry install - uses: actions/cache@v2 - with: - path: ~/.local - key: poetry-1.8.2-0 - - uses: snok/install-poetry@v1 - with: - version: 1.8.2 - virtualenvs-create: true - virtualenvs-in-project: true - - name: cache deps - id: cache-deps - uses: actions/cache@v2 - with: - path: .venv - key: pydeps-${{ hashFiles('**/poetry.lock') }} - - run: poetry install --no-interaction --no-root - if: steps.cache-deps.outputs.cache-hit != 'true' - - run: poetry install --no-interaction - - run: poetry run python 12_pinkbombs_app/generate.py - - id: files - uses: jitterbit/get-changed-files@v1 - with: - format: 'csv' - - - - push: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - with: - repository: 12_pinkbombs_app - ref: 'main' - token: ${{ secrets.D4GTECH_TOKEN }} - path: './12_pinkbombs_app' - - name: setup git config - run: | - git config user.name "Pinkbombs Bot" - git config user.email "<>" - - run : git add . - - run: git commit -m "bot: update data" - - run: git push origin main