From dac1d8d04340952b35cb356f8a9fe26f13d2049e Mon Sep 17 00:00:00 2001 From: loathingKernel <142770+loathingKernel@users.noreply.github.com> Date: Sun, 10 Dec 2023 23:48:03 +0200 Subject: [PATCH] Workflows: Remove `shell` --- .github/workflows/release.yml | 3 +-- .github/workflows/snapshot.yml | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f8140340..02951da9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,8 +17,7 @@ jobs: name: Version ${{ github.ref_name }} runs-on: ubuntu-latest steps: - - shell: bash - run: "true" + - run: "true" pypi: if: "!github.event.release.prerelease" diff --git a/.github/workflows/snapshot.yml b/.github/workflows/snapshot.yml index ddf23ae8..acb00e01 100644 --- a/.github/workflows/snapshot.yml +++ b/.github/workflows/snapshot.yml @@ -41,8 +41,7 @@ jobs: name: Version ${{ needs.version.outputs.tag_abbrev }}.${{ needs.version.outputs.tag_offset }} runs-on: ubuntu-latest steps: - - shell: bash - run: "true" + - run: "true" ubuntu: needs: version