Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[release/v1.2] ci/release: allow setting main ref for testing #1119

Merged
merged 1 commit into from
Jan 3, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ on:
type: boolean
required: false
default: false
checkout_main_ref:
description: Checkout this git ref as main branch (some workflows run on this state)
type: string
required: false
default: main

env:
container_registry: ghcr.io/edgelesssys
Expand Down Expand Up @@ -130,7 +135,7 @@ jobs:
- name: Checkout main
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
ref: main
ref: ${{ inputs.checkout_main_ref }}
path: contrast-main
- uses: ./contrast-working/.github/actions/setup_nix
with:
Expand Down