You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .circleci/config.yml
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1046,6 +1046,12 @@ jobs:
1046
1046
- run:
1047
1047
name: Publish artifacts on GitHub
1048
1048
command: |
1049
+
# This safety measure allows us to run the job until here for testing.
1050
+
if [ -z "$CIRCLE_TAG" ]; then
1051
+
echo "Not a tag build"
1052
+
exit 1
1053
+
fi
1054
+
1049
1055
TAG="$CIRCLE_TAG"
1050
1056
TITLE="$TAG"
1051
1057
BODY="The release notes are available in [CHANGELOG.md](https://github.com/CosmWasm/cosmwasm/blob/$TAG/CHANGELOG.md). For upgrading contracts also consult [MIGRATING.md](https://github.com/CosmWasm/cosmwasm/blob/$TAG/MIGRATING.md).\n\nAttached there are some build artifacts generated at this tag. Those are for development purposes only! Please use crates.io to find the packages of this release."
0 commit comments