We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f892118 commit c57c4d9Copy full SHA for c57c4d9
.github/workflows/ci.yml
@@ -14,11 +14,19 @@ permissions:
14
jobs:
15
build:
16
runs-on: ubuntu-latest
17
+ outputs:
18
+ new_version: ${{ steps.build.outputs.new_version }}
19
+ release_type: ${{ steps.build.outputs.release_type }}
20
+ previous_tag: ${{ steps.build.outputs.previous_tag }}
21
+ should_release: ${{ steps.build.outputs.should_release }}
22
+ should_publish: ${{ steps.build.outputs.should_publish }}
23
+ branch_name: ${{ steps.build.outputs.branch_name }}
24
steps:
25
- name: Checkout code
26
uses: actions/checkout@v4
27
with:
28
ref: ${{ github.event_name == 'pull_request' && github.head_ref || github.ref }}
29
30
- name: Build Bicep Code
31
+ id: build
32
uses: ./.github/actions/ci/bicep-standard-ci
0 commit comments