Skip to content

Commit

Permalink
Fix typo in ci config
Browse files Browse the repository at this point in the history
There appears to be a typo since branch refs are stored in `refs/heads` (plural) directory.
  • Loading branch information
yhtang authored Apr 8, 2023
1 parent c42aae9 commit d8592eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
if: ${{github.ref != 'refs/head/main'}}
if: ${{github.ref != 'refs/heads/main'}}
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v4
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
if: ${{github.ref != 'refs/head/main'}}
if: ${{github.ref != 'refs/heads/main'}}
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
if: ${{github.ref != 'refs/head/main'}}
if: ${{github.ref != 'refs/heads/main'}}
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
Expand Down

0 comments on commit d8592eb

Please sign in to comment.