Skip to content

Commit bc8f27e

Browse files
committed
verify from main
1 parent 0006560 commit bc8f27e

3 files changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/pull_request.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,5 @@ jobs:
5656
runtime_docker_image: "${{ needs.get_config_values.outputs.devcontainer_image }}:githubactions-${{ needs.get_config_values.outputs.devcontainer_version }}"
5757
branch_name: ${{ github.event.pull_request.head.ref }}
5858
tag_format: ${{ needs.get_config_values.outputs.tag_format }}
59+
use_published_from_main_image: false
5960
secrets: inherit

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,5 @@ jobs:
4444
runtime_docker_image: "${{ needs.get_config_values.outputs.devcontainer_image }}:githubactions-${{ needs.get_config_values.outputs.devcontainer_version }}"
4545
branch_name: main
4646
tag_format: ${{ needs.get_config_values.outputs.tag_format }}
47+
use_published_from_main_image: true
4748
secrets: inherit

.github/workflows/tag-release-devcontainer.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ on:
4545
description: "An repository for the extra artifact"
4646
required: false
4747
type: string
48+
use_published_from_main_image:
49+
required: true
50+
type: boolean
4851
outputs:
4952
version_tag:
5053
value: ${{ jobs.tag_release.outputs.version_tag }}
@@ -63,7 +66,7 @@ jobs:
6366
uses: ./.github/workflows/verify_attestation.yml
6467
with:
6568
runtime_docker_image: "${{ inputs.runtime_docker_image }}"
66-
use_published_from_main_image: false
69+
use_published_from_main_image: ${{ inputs.use_published_from_main_image }}
6770
tag_release:
6871
runs-on: ubuntu-22.04
6972
needs: verify_attestation

0 commit comments

Comments
 (0)