Skip to content

Updated integration workflow action versions #21

Updated integration workflow action versions

Updated integration workflow action versions #21

Workflow file for this run

name: Whack-A-Mole Intagration
on:
push:
branches: [main]
permissions:
id-token: write
contents: read
jobs:
versionize:
runs-on: ubuntu-latest
outputs:
semver: ${{ steps.gitversion.outputs.SemVer }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install GitVersion
uses: gittools/actions/gitversion/[email protected]
with:
versionSpec: "5.x"
- name: Determine Version
id: gitversion
uses: gittools/actions/gitversion/[email protected]
with:
useConfigFile: true
publish-bicep:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build & Push
working-directory: infrastructure
run: |
bicep build-params test.main.bicepparam
az bicep build --file main.bicep
- name: Publish Artifact
uses: actions/upload-artifact@v4
with:
name: bicep-templates
path: infrastructure/*.json
infrastructure-incremental:
needs: [publish-bicep, versionize]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download Artifact
uses: actions/download-artifact@v4
with:
name: bicep-templates
path: ./infrastructure
- name: Az CLI login
uses: azure/login@v1
with:
client-id: ${{ secrets.WAM_TST_CLIENT_ID }}
tenant-id: ${{ secrets.WAM_TST_TENANT_ID }}
subscription-id: ${{ secrets.WAM_TST_SUBSCRIPTION_ID }}
- name: Deploy Infrastructure
id: arm
uses: Azure/cli@v1
with:
inlineScript: az deployment sub create --name wam-integration-northeur --location northeurope --template-file ./infrastructure/main.json --parameters ./infrastructure/test.main.json