Releases: Azure/arm-deploy
Releases · Azure/arm-deploy
v2
Highlights
- Added tenant scope deployments for the ARM Deploy action by @bearmannl in #125
- Upgrade to Node 20 by @anthony-c-martin in #142
Full Changelog: v1.0.8...v2
arm-deploy@v1
A GitHub action to automate your workflow to deploy ARM templates.
Usage
Sample workflow to build and deploy a ARM template.
# File: .github/workflows/workflow.yml
on: [push]
name: ARM Sample
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: azure/login@v1
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
- uses: azure/arm-deploy@v1
with:
subscriptionId: e1046c08-7072-****-****-************
resourceGroupName: myrg
template: ./azuredeploy.json
parameters: storageAccountType=Standard_LRS
License
This GitHub action is licensed under the MIT License.
Releasing v1.0.9
What's Changed
- Updated node version from 12 to 16
- Updated @actions/core to ^1.10.0
Releasing v1.0.8
[Fix] Spacing bug in additional params
Releasing v1.0.7
Removed additionalArguments while validation step
Releasing v1.0.6
Added additionalArguments input.
All the extra parameters can be passed as string using additionalArguments.
additionalArguments: "--what-if --what-if-exclude-change-types Create Ignore --rollback-on-error"
Releasing v1.0.5
- Added failOnStdErr input #61
Releasing v1.0.4
- Fixed az-cli compat issue
- Updated test
Releasing v1.0.3 version
- Fixing io streams issue
- other readme changes
Releasing v1.0.2 version
Updating release branch to release new version (#31) * Update action.yml (#6) * Update action.yml - update name (#9) * Update action.yml * Update action.yml * enable local debugging (#8) * Fixing ci tests and adding code owners (#11) * fix ci tests with codeowners * adding how to debug.md * updating uri * updating test file * updating test file * error for deployment * error for deployment * updating options * Add changes * space and warning fix (#12) * Add changes * Updates in action.yaml (#13) * action edits * update content * Adding validate mode (#14) * adding validate mode * update readme * PR review * PR review * Add changes * Added workflow for stale issues * Update stale.yml * Adding workflow for default label * Upgrade @actions/core to version 1.2.6 or later (#24) * Upgrade @actions/core to version 1.2.6 or later This is as per the security vulnerability : https://github.com/Azure/arm-deploy/network/alert/package-lock.json/@actions%2Fcore/open * update Co-authored-by: Kanika Pasrija <[email protected]> * Add changes * Documentation for ReleaseProcess (#25) * Create ReleaseProcess.md * Update HowToDebug.md * Update ReleaseProcess.md * Update ReleaseProcess.md * updating references in advance examples (#20) * updating reference * updating reference * Updated Readme for Azure ARM Deploy Action (#28) * Update README.md * Update README.md Co-authored-by: Usha N <[email protected]> * Change the subscriptionId paremeter to be completely optional (#19) * Change the subscriptionId paremeter to be completely optional Use the subscription id set by the Azure Login action by default. * address feedback * Update exampleGuide.md (#26) * Update exampleGuide.md * Update exampleGuide.md * Add changes * Update ReleaseProcess.md Dummy commit to run build-release WF Co-authored-by: Bishal Prasad <[email protected]> Co-authored-by: GitHub Action <[email protected]> Co-authored-by: t-dedah <[email protected]> Co-authored-by: Deepak Dahiya <[email protected]> Co-authored-by: Kanika Pasrija <[email protected]> Co-authored-by: pulkitaggarwl <[email protected]> Co-authored-by: Zainudeen V K <[email protected]> Co-authored-by: Usha N <[email protected]> Co-authored-by: harvey-k <[email protected]>