Skip to content

Commit

Permalink
Fix CI release yaml
Browse files Browse the repository at this point in the history
Nightly was failing because of an error on the job definition, where an
if conditional was made.
  • Loading branch information
qu1queee committed Mar 12, 2021
1 parent d0293ee commit 719df46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
nightly:
if: github.repository == "shipwright-io/build"
if: ${{ github.repository == 'shipwright-io/build' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
release:
if: github.repository == "shipwright-io/build"
if: ${{ github.repository == 'shipwright-io/build' }}
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand Down

0 comments on commit 719df46

Please sign in to comment.