Skip to content

Commit

Permalink
Replace Python cells with Markdown cells when the text is static (#288)
Browse files Browse the repository at this point in the history
  • Loading branch information
cedricvidal authored Dec 9, 2024
1 parent 4397698 commit b58bfb0
Showing 1 changed file with 11 additions and 15 deletions.
26 changes: 11 additions & 15 deletions docs/workshop/workshop-4-ci-cd.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -35,36 +35,32 @@
"\n",
"1. To do this **open a new terminal**. \n",
"\n",
"2. You then need to **add github CLI as an authentication helper so you have the correct permissions by running the following commands: \n",
"\n",
"**run the cell and then copy the output to the terminal**"
"2. You then need to **add github CLI as an authentication helper so you have the correct permissions by running the following commands: "
]
},
{
"cell_type": "code",
"execution_count": null,
"cell_type": "markdown",
"metadata": {},
"outputs": [],
"source": [
"from IPython.display import Markdown\n",
"Markdown(f\"gh auth setup-git\")"
"```console\n",
"gh auth setup-git\n",
"```"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"2. We can the use azd to **configure the CI/CD pipeline** by running this command and copying the output to the terminal: "
"2. We can the use azd to **configure the CI/CD pipeline**:"
]
},
{
"cell_type": "code",
"execution_count": null,
"cell_type": "markdown",
"metadata": {},
"outputs": [],
"source": [
"from IPython.display import Markdown\n",
"Markdown(f\"azd pipeline config\")"
"```console\n",
"azd pipeline config\n",
"```"
]
},
{
Expand Down Expand Up @@ -129,7 +125,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"display_name": "local",
"language": "python",
"name": "python3"
},
Expand Down

0 comments on commit b58bfb0

Please sign in to comment.