ci: fix cond
This commit is contained in:
parent
1ee321a4a6
commit
a16fe8a6a7
1 changed files with 2 additions and 2 deletions
4
.github/workflows/main.yml
vendored
4
.github/workflows/main.yml
vendored
|
@ -61,7 +61,7 @@ jobs:
|
|||
preview:
|
||||
runs-on: ubuntu-latest
|
||||
name: Deploy preview
|
||||
if: ${{ github.ref != 'refs/head/main' }}
|
||||
if: ${{ github.ref != 'refs/heads/main' }}
|
||||
needs: build
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
@ -101,7 +101,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
name: Deploy
|
||||
needs: build
|
||||
if: ${{ github.ref == 'refs/head/main' }}
|
||||
if: ${{ github.ref == 'refs/heads/main' }}
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-node@v2
|
||||
|
|
Loading…
Reference in a new issue