Skip to content

Commit

Permalink
Run checkout step before cleaning.
Browse files Browse the repository at this point in the history
Signed-off-by: Tao He <[email protected]>
  • Loading branch information
sighingnow committed Mar 23, 2023
1 parent 504cc60 commit d9f547e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/libclang-alpine-amd64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
if: "!contains(github.event.head_commit.message, 'skip ci')"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: free disk spaces
run: |
bash .github/free-disk-space.sh || true
- uses: actions/checkout@v3
./.github/free-disk-space.sh || true
- uses: actions/setup-python@v4
with:
python-version: '3.10'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/libclang-linux-aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
if: "!contains(github.event.head_commit.message, 'skip ci')"
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v3
- name: free disk spaces
run: |
bash .github/free-disk-space.sh || true
- uses: actions/checkout@v3
./.github/free-disk-space.sh || true
- uses: actions/setup-python@v4
with:
python-version: '3.10'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/libclang-linux-amd64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
if: "!contains(github.event.head_commit.message, 'skip ci')"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: free disk spaces
run: |
bash .github/free-disk-space.sh || true
- uses: actions/checkout@v3
./.github/free-disk-space.sh || true
- uses: actions/setup-python@v4
with:
python-version: '3.10'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/libclang-linux-arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
if: "!contains(github.event.head_commit.message, 'skip ci')"
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v3
- name: free disk spaces
run: |
bash .github/free-disk-space.sh || true
- uses: actions/checkout@v3
./.github/free-disk-space.sh || true
- uses: actions/setup-python@v4
with:
python-version: '3.10'
Expand Down

0 comments on commit d9f547e

Please sign in to comment.