Skip to content

Commit

Permalink
Added needs dependencies for build workflow jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Garrett committed Feb 22, 2024
1 parent 24ee9ad commit b116cc7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/azure-ipam-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,14 @@ jobs:
id: commitCode
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "ipams@users.noreply.github.com"
git config --global user.email "ipam@users.noreply.github.com"
git commit -a -m "Updated Azure IPAM Version"
git push
release:
name: Create Azure IPAM Release
runs-on: ubuntu-latest
needs: [ version ]
steps:
- name: Checkout Azure IPAM Code
uses: actions/checkout@v4
Expand Down Expand Up @@ -115,6 +116,7 @@ jobs:
update:
name: Update Azure IPAM Containers
runs-on: ubuntu-latest
needs: [ version, release ]
steps:
- name: Azure login
uses: azure/login@v1
Expand Down

0 comments on commit b116cc7

Please sign in to comment.