Skip to content

Commit

Permalink
get master fix (#2214)
Browse files Browse the repository at this point in the history
Co-authored-by: Kirill Azovtsev <[email protected]>
  • Loading branch information
zerg-su and qdrvm-ci authored Sep 18, 2024
1 parent c9ce259 commit 7cf766d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,8 @@ jobs:
fetch-depth: 0

- name: "Get master branch"
run: git fetch origin master:master
if: github.ref != 'refs/heads/master'
run: git fetch origin master:master || true

- name: "Authenticate with Google Cloud"
uses: 'google-github-actions/auth@v2'
Expand Down Expand Up @@ -303,7 +304,8 @@ jobs:
fetch-depth: 0

- name: "Get master branch"
run: git fetch origin master:master
if: github.ref != 'refs/heads/master'
run: git fetch origin master:master || true

- name: "Authenticate with Google Cloud"
uses: 'google-github-actions/auth@v2'
Expand Down Expand Up @@ -472,7 +474,8 @@ jobs:
fetch-depth: 0

- name: "Get master branch"
run: git fetch origin master:master
if: github.ref != 'refs/heads/master'
run: git fetch origin master:master || true

# - name: Create and enable swap
# run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/zombie-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ jobs:
fetch-depth: 0

- name: "Get master branch"
run: git fetch origin master:master
if: github.ref != 'refs/heads/master'
run: git fetch origin master:master || true

- name: "Authenticate with Google Cloud"
uses: 'google-github-actions/auth@v2'
Expand Down

0 comments on commit 7cf766d

Please sign in to comment.