From 0c789c33357ce081282b88a0b8c9d654afd2a627 Mon Sep 17 00:00:00 2001 From: msramalho <19508417+msramalho@users.noreply.github.com> Date: Fri, 1 Jul 2022 13:32:41 +0200 Subject: [PATCH] cleanup --- .github/actions/setup-venv/action.yml | 5 ----- .github/workflows/main.yml | 8 +------- 2 files changed, 1 insertion(+), 12 deletions(-) diff --git a/.github/actions/setup-venv/action.yml b/.github/actions/setup-venv/action.yml index a0ddf79..c42420a 100644 --- a/.github/actions/setup-venv/action.yml +++ b/.github/actions/setup-venv/action.yml @@ -16,11 +16,6 @@ runs: with: python-version: ${{ inputs.python-version }} - - shell: bash - run: | - # install ffmpeg - sudo apt install ffmpeg - - shell: bash run: | # Install prerequisites. diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b9c992f..0e82a4c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -69,18 +69,12 @@ jobs: run: | . .venv/bin/activate pip uninstall -y vk-url-scraper - # checks: - # name: Lint - # runs-on: ubuntu-latest - # steps: - # - uses: actions/checkout@v3 - # - uses: psf/black@stable release: name: Release runs-on: ubuntu-latest needs: [checks] - # if: startsWith(github.ref, 'refs/tags/') + if: startsWith(github.ref, 'refs/tags/') steps: - uses: actions/checkout@v1