Skip to content

Update CI: Create and push tag #12

Update CI: Create and push tag

Update CI: Create and push tag #12

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
- 'feature/**'
- 'fix/**'
permissions:
contents: write
pull-requests: read # Added for PR triggers
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.event_name == 'pull_request' && github.head_ref || github.ref }}
- name: Build Bicep Code
uses: ./.github/actions/ci/bicep-standard-ci