Skip to content

Commit

Permalink
Merge pull request #256 from Azure/build-workflow-fix11
Browse files Browse the repository at this point in the history
Azure IPAM Build Workflow Fixes
  • Loading branch information
DCMattyG authored Apr 9, 2024
2 parents fd7bf44 + e0ba53a commit 72dace5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/azure-ipam-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
outputs:
ipamVersion: ${{ steps.updateVersion.outputs.ipamVersion }}
prNumber: ${{ fromJson(steps.getPullRequestData.outputs.result).number }}
commitHash: ${{ steps.commitCode.outputs.commitHash }}
steps:
- run: echo "Job triggered by a ${{ github.event_name }} event to main."

Expand Down Expand Up @@ -103,6 +104,7 @@ jobs:
run: |
git commit -a -m "Updated Azure IPAM Version to v${{ steps.updateVersion.outputs.ipamVersion }} [skip ci]"
git push
echo "commitHash=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT
release:
name: Create Azure IPAM Release
Expand All @@ -112,6 +114,7 @@ jobs:
- name: Checkout Azure IPAM Code
uses: actions/checkout@v4
with:
ref: ${{ needs.version.outputs.commitHash }}
sparse-checkout: |
assets
Expand Down Expand Up @@ -141,7 +144,7 @@ jobs:
needs: [ version, release ]
steps:
- name: Azure login
uses: azure/login@v1
uses: azure/login@v2
with:
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
Expand Down
2 changes: 1 addition & 1 deletion docs/_coverpage.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

![logo](./images/ipam-logo.png ':size=45%')

# IPAM <small>3.1.0</small>
# IPAM <small>3.0.0</small>
> Azure IP Address Management Made Easy
[GitHub](https://github.com/Azure/ipam)
Expand Down
2 changes: 1 addition & 1 deletion engine/app/version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "3.1.0"
"version": "3.0.0"
}
2 changes: 1 addition & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "azure-ipam-ui",
"version": "3.1.0",
"version": "3.0.0",
"type": "module",
"private": true,
"dependencies": {
Expand Down

0 comments on commit 72dace5

Please sign in to comment.