Skip to content

Commit 890801c

Browse files
authored
Merge pull request #2648 from input-output-hk/dlachaume/2638/fix-release-note
fix: escape `$(pwd)` and format installation commands
2 parents 12825aa + fcdaf1a commit 890801c

File tree

1 file changed

+9
-3
lines changed
  • .github/workflows/actions/prepare-distribution

1 file changed

+9
-3
lines changed

.github/workflows/actions/prepare-distribution/action.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,13 +154,19 @@ runs:
154154
Use the following commands to install the Mithril nodes:
155155
156156
- Download the **Mithril signer** in the current directory:
157-
\`curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/input-output-hk/mithril/refs/heads/main/mithril-install.sh | sh -s -- -c mithril-signer -d ${{ inputs.tag }} -p $(pwd)\`
157+
\`\`\`bash
158+
curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/input-output-hk/mithril/refs/heads/main/mithril-install.sh | sh -s -- -c mithril-signer -d ${{ inputs.tag }} -p \$(pwd)
159+
\`\`\`
158160
159161
- Download the **Mithril client CLI** in the current directory:
160-
\`curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/input-output-hk/mithril/refs/heads/main/mithril-install.sh | sh -s -- -c mithril-client -d ${{ inputs.tag }} -p $(pwd)\`
162+
\`\`\`bash
163+
curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/input-output-hk/mithril/refs/heads/main/mithril-install.sh | sh -s -- -c mithril-client -d ${{ inputs.tag }} -p \$(pwd)
164+
\`\`\`
161165
162166
- Download the **Mithril aggregator** in the current directory:
163-
\`curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/input-output-hk/mithril/refs/heads/main/mithril-install.sh | sh -s -- -c mithril-aggregator -d ${{ inputs.tag }} -p $(pwd)\`
167+
\`\`\`bash
168+
curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/input-output-hk/mithril/refs/heads/main/mithril-install.sh | sh -s -- -c mithril-aggregator -d ${{ inputs.tag }} -p \$(pwd)
169+
\`\`\`
164170
EOF
165171
166172
- name: Create and sign sha256 checksum

0 commit comments

Comments
 (0)