Skip to content

Commit f5e00ea

Browse files
committed
5 readme
1 parent 3aa1497 commit f5e00ea

File tree

2 files changed

+7
-22
lines changed

2 files changed

+7
-22
lines changed

5azd/README copy.md

-21
This file was deleted.

5azd/README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ azd pipeline config
1717

1818
The advantage of using an azd template is that you get a good start for both the function code as well as the infrastructure-as-code.
1919

20-
The template creates assumes it is created in the root of a repository. In this case, it is created a in folder, and the GitHub Actions file in .github/workflows has to be moved/copied to the root. And then the action needs to know its working-directory explicitly like:
20+
The template assumes it is created in the root of a repository, while here it is created in a folder. Move the GitHub Actions file in .github/workflows to the root, and add the working-directory explicitly like:
2121
```
2222
jobs:
2323
build:
@@ -28,6 +28,12 @@ jobs:
2828
2929
```
3030

31+
While modifying existing templates, you may want to rollback your code to a past version that worked, which goes like:
32+
```
33+
git revert --no-commit <commit#>..HEAD
34+
git commit
35+
```
36+
3137
[Source](https://learn.microsoft.com/en-us/azure/developer/azure-developer-cli/configure-devops-pipeline)
3238

3339
[Home](../README.md)

0 commit comments

Comments
 (0)