9 lines
241 B
Bash
Executable File
9 lines
241 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Exit script if a statement returns a non-true return value.
|
|
set -o errexit
|
|
# Use the error status of the first failure, rather than that of the last item in a pipeline.
|
|
set -o pipefail
|
|
|
|
node ./scripts/github/publishRelease.js
|