Skip to content

Commit a52a983

Browse files
authored
Fix publishing from gh action (#700)
1 parent 238644b commit a52a983

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.changeset/brave-cherries-deny.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
---

scripts/publish-cargo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /bin/bash
2-
set -eo pipefail
2+
set -e
33

44
# Get the local version from Cargo.toml
55
package_name=$(awk '

scripts/publish-docs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /usr/bin/env bash
2-
set -eo pipefail
2+
set -e
33

44
# Get the local version from package.json
55
local_version=$(jq -r ".version" package.json)

scripts/publish-npm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /bin/bash
2-
set -eo pipefail
2+
set -e
33

44
# Get the local version from package.json
55
package_name=$(jq -r ".name" package.json)

0 commit comments

Comments
 (0)