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 c60cb40 commit 23e9c44Copy full SHA for 23e9c44
scripts/get.sh
@@ -0,0 +1,24 @@
1
+#!/usr/bin/env bash
2
+
3
+set -e
4
+set -u
5
+set -o pipefail
6
7
+if [[ ${RUNNER_DEBUG:-0} == 1 ]]; then
8
+ set -x
9
+fi
10
11
+KEY="${1}"
12
+OUTPUT="${2}"
13
14
+if [[ -z $KEY ]]; then
15
+ echo "Error: KEY not specified."
16
+ exit 1
17
18
19
+if [[ -z $OUTPUT ]]; then
20
+ echo "Error: OUTPUT not specified."
21
22
23
24
+echo "$OUTPUT=$(jq --raw-output "$KEY" package.json)" >> "$GITHUB_OUTPUT"
scripts/prepack.sh
@@ -0,0 +1,11 @@
+if [[ -n $SKIP_PREPACK ]]; then
+ echo "Notice: skipping prepack."
+ exit 0
+yarn build
0 commit comments