Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: storyprotocol/sdk
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8b1772cccdb1be05af07a9a2f01b72d9796e7e69
Choose a base ref
..
head repository: storyprotocol/sdk
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9d458828091bcaca1309ce13316065987b015e15
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +2 −2 .github/workflows/publish-package.yaml
4 changes: 2 additions & 2 deletions .github/workflows/publish-package.yaml
Original file line number Diff line number Diff line change
@@ -51,7 +51,7 @@ jobs:
fi
build-test-publish:
needs: [print_version_to_publish, fetch_latest_version]
needs: [print_version_to_publish, fetch_latest_version, fail_if_version_is_same]
# Skip this job if the version to be published is the same as the latest version on NPM
# and the event triggering the workflow is a push
if: needs.fetch_latest_version.outputs.LATEST_VERSION != needs.print_version_to_publish.outputs.version_to_be_published && github.event_name == 'push'
@@ -99,7 +99,7 @@ jobs:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

create_release:
needs: [print_version_to_publish, fetch_latest_version]
needs: [print_version_to_publish, fetch_latest_version, fail_if_version_is_same]
# Skip this job if the version to be published is the same as the latest version on NPM
# and the event triggering the workflow is a push
if: needs.fetch_latest_version.outputs.LATEST_VERSION != needs.print_version_to_publish.outputs.version_to_be_published && github.event_name == 'push'