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
RELEASE_DOC_LINK=$(echo ${{ env.RELEASE_VERSION }} | sed -r 's/\.+/-/g')
82
-
RELEASE_DOC_LINK=${RELEASE_DOC_LINK%??}
83
-
DIRS=(
84
-
"Developer Guide"
85
-
"Examples"
86
-
"FAQ"
87
-
"Getting started"
88
-
"Overview"
89
-
"Project Info"
90
-
)
91
-
echo "Creating release site documentation: v$RELEASE_DOC_VERSION"
92
-
mkdir -p "$RELEASE_DOC_DIR"
93
-
for DIR in "${DIRS[@]}"; do
94
-
echo "Copying $DIR to $DOC_BASEDIR/$DIR";
95
-
cp -r "$DOC_BASEDIR/$DIR" "$RELEASE_DOC_DIR";
96
-
done
97
-
98
-
echo "Creating $RELEASE_DOC_DIR/_index.md"
99
-
cat > "$RELEASE_DOC_DIR/_index.md" <<EOF
100
-
---
101
-
title: "Docs Release v$RELEASE_DOC_VERSION"
102
-
linkTitle: "v$RELEASE_DOC_VERSION"
103
-
url: "/v$RELEASE_DOC_LINK/docs"
104
-
---
105
-
This section is where the user documentation for Connect File Pulse lives - all the information that users need to understand and successfully use Connect File Pulse.
RELEASE_DOC_LINK=$(echo ${{ env.RELEASE_VERSION }} | sed -r 's/\.+/-/g')
72
+
RELEASE_DOC_LINK=${RELEASE_DOC_LINK%??}
73
+
DIRS=(
74
+
"Developer Guide"
75
+
"Examples"
76
+
"FAQ"
77
+
"Getting started"
78
+
"Overview"
79
+
"Project Info"
80
+
)
81
+
echo "Creating release site documentation: v$RELEASE_DOC_VERSION"
82
+
mkdir -p "$RELEASE_DOC_DIR"
83
+
for DIR in "${DIRS[@]}"; do
84
+
echo "Copying $DIR to $DOC_BASEDIR/$DIR";
85
+
cp -r "$DOC_BASEDIR/$DIR" "$RELEASE_DOC_DIR";
86
+
done
87
+
88
+
echo "Creating $RELEASE_DOC_DIR/_index.md"
89
+
cat > "$RELEASE_DOC_DIR/_index.md" <<EOF
90
+
---
91
+
title: "Docs Release v$RELEASE_DOC_VERSION"
92
+
linkTitle: "v$RELEASE_DOC_VERSION"
93
+
url: "/v$RELEASE_DOC_LINK/docs"
94
+
---
95
+
This section is where the user documentation for Connect File Pulse lives - all the information that users need to understand and successfully use Connect File Pulse.
0 commit comments