From 8b71eceaf8430e9c714f8490a371d1d0564bdf41 Mon Sep 17 00:00:00 2001 From: Lars Gohr Date: Sat, 28 Aug 2021 22:29:26 +0200 Subject: [PATCH] :recycle: Correct syntax of publishing --- .github/workflows/publish_release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish_release.yml b/.github/workflows/publish_release.yml index 799a39d..6a887a4 100644 --- a/.github/workflows/publish_release.yml +++ b/.github/workflows/publish_release.yml @@ -10,9 +10,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - if: github.actor != "dependabot[bot]" + if: github.actor != 'dependabot[bot]' - name: Create a Release - if: github.actor != "dependabot[bot]" + if: github.actor != 'dependabot[bot]' uses: elgohr/Github-Release-Action@master env: GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}