Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ jobs:
run: |
set -euxo pipefail
echo "Default branch: ${DEFAULT_BRANCH}"
git fetch origin "${DEFAULT_BRANCH}" --tags
# Do NOT fetch tags; fetching tags can fail on tag-triggered workflows
# because the runner already has the triggering tag checked out.
git fetch --no-tags origin "${DEFAULT_BRANCH}"
git merge-base --is-ancestor "${GITHUB_SHA}" "origin/${DEFAULT_BRANCH}"

build_wheels:
Expand Down Expand Up @@ -141,4 +143,4 @@ jobs:
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: upload
skip-existing: true
skip-existing: true
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

:ocean: :cyclone:

[![Tests](https://github.com/CHLNDDEV/oceanmesh/actions/workflows/testing.yml/badge.svg)](https://github.com/CHLNDDEV/oceanmesh/actions/workflows/testing.yml)
[![Tests](https://github.com/CHLNDDEV/oceanmesh/actions/workflows/testing.yml/badge.svg)](https://github.com/CHLNDDEV/oceanmesh/actions/workflows/ci.yml)

[![CodeCov](https://codecov.io/gh/CHLNDDEV/oceanmesh/branch/master/graph/badge.svg)](https://codecov.io/gh/CHLNDDEV/oceanmesh)

Expand Down
Loading