Skip to content

Commit

Permalink
docs: fix operation & type inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
ljtill authored Nov 5, 2024
1 parent b73adf4 commit 96831da
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions examples/STACKS.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ This snippet demonstrates the default usage of the `azure/bicep-deploy@v1` GitHu
- name: Create
uses: azure/bicep-deploy@v1
with:
operation: deploymentStack
type: create
type: deploymentStack
operation: create
name: Development
location: westus2
scope: subscription
Expand All @@ -26,8 +26,8 @@ This snippet illustrates the default usage of the `azure/bicep-deploy@v1` action
- name: Create
uses: azure/bicep-deploy@v1
with:
operation: deploymentStack
type: create
type: deploymentStack
operation: create
name: Development
location: westus2
scope: subscription
Expand Down Expand Up @@ -75,8 +75,8 @@ jobs:
- name: Create
uses: azure/bicep-deploy@v1
with:
operation: deploymentStack
type: create
type: deploymentStack
operation: create
name: Development
location: westus2
scope: subscription
Expand Down Expand Up @@ -124,8 +124,8 @@ jobs:
- name: Validate
uses: azure/bicep-deploy@v1
with:
operation: deploymentStack
type: validate
type: deploymentStack
operation: validate
name: Development
location: westus2
scope: subscription
Expand Down Expand Up @@ -166,8 +166,8 @@ jobs:
- name: Delete
uses: azure/bicep-deploy@v1
with:
operation: deploymentStack
type: delete
type: deploymentStack
operation: delete
name: Development
location: westus2
scope: subscription
Expand Down

0 comments on commit 96831da

Please sign in to comment.