Skip to content

Commit

Permalink
Remove check to run only in helm org
Browse files Browse the repository at this point in the history
Signed-off-by: Scott Rigby <scott@r6by.com>
  • Loading branch information
scottrigby committed Feb 21, 2023
1 parent c5dda09 commit c8efe20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Expand Up @@ -14,7 +14,7 @@ on:
# job is triggered by a tag push, VERSION should be the tag ref.
jobs:
release:
if: ${{ startsWith(github.ref, 'refs/tags/v') && github.repository_owner == 'helm' }}
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
steps:
- name: Checkout source code
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
canary-release:
runs-on: ubuntu-latest
needs: build
if: ${{ github.ref == 'refs/heads/main' && github.repository_owner == 'helm' }}
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout source code
uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # pin@v3.2.0
Expand Down

0 comments on commit c8efe20

Please sign in to comment.