We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbfc6db commit 025444aCopy full SHA for 025444a
.github/workflows/release.yaml
@@ -106,7 +106,7 @@ jobs:
106
echo "::set-output name=release_version::$RELEASE_VERSION"
107
- run: |
108
npm ci
109
- export NPM_TAG=$RELEASE_VERSION
+ export NPM_TAG=$(node index.js get-tag)
110
npm publish --tag $NPM_TAG
111
working-directory: ./dist/npm
112
env:
dist/npm/bin/devspace
@@ -35,6 +35,9 @@ if [ ! -f "$BINARY" ] || [ "$STAT" -lt 10000 ]; then
35
36
echo "Running: node $BASEDIR/$INDEX_FILE finish-install $BINDIR"
37
/usr/bin/env node "$BASEDIR/$INDEX_FILE" finish-install $BINDIR;
38
+ if [ $? -ne 0 ]; then
39
+ exit 1
40
+ fi
41
42
CMD_BIN=$(command -v cmd.exe)
43
0 commit comments