Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 5 additions & 5 deletions .github/workflows/nightly-spartan-bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
workflow_dispatch:
inputs:
nightly_tag:
description: "Nightly tag to use (e.g., 2.3.4-spartan.20251209). Leave empty to auto-detect."
description: "Nightly tag to use (e.g., 2.3.4-nightly.20251209). Leave empty to auto-detect."
required: false
type: string

Expand All @@ -21,7 +21,7 @@ jobs:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
ref: merge-train/spartan
ref: next

- name: Determine nightly tag
id: nightly-tag
Expand All @@ -30,7 +30,7 @@ jobs:
nightly_tag="${{ inputs.nightly_tag }}"
else
current_version=$(jq -r '."."' .release-please-manifest.json)
nightly_tag="${current_version}-spartan.$(date -u +%Y%m%d)"
nightly_tag="${current_version}-nightly.$(date -u +%Y%m%d)"
fi
echo "nightly_tag=$nightly_tag" >> $GITHUB_OUTPUT
echo "Using nightly tag: $nightly_tag"
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
ref: merge-train/spartan
ref: next

- name: Determine nightly tag
id: nightly-tag
Expand All @@ -135,7 +135,7 @@ jobs:
nightly_tag="${{ inputs.nightly_tag }}"
else
current_version=$(jq -r '."."' .release-please-manifest.json)
nightly_tag="${current_version}-spartan.$(date -u +%Y%m%d)"
nightly_tag="${current_version}-nightly.$(date -u +%Y%m%d)"
fi
echo "nightly_tag=$nightly_tag" >> $GITHUB_OUTPUT
echo "Using nightly tag: $nightly_tag"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/weekly-proving-bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
workflow_dispatch:
inputs:
nightly_tag:
description: "Nightly tag to use (e.g., 2.3.4-spartan.20251209). Leave empty to auto-detect."
description: "Nightly tag to use (e.g., 2.3.4-nightly.20251209). Leave empty to auto-detect."
required: false
type: string

Expand All @@ -21,7 +21,7 @@ jobs:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
ref: merge-train/spartan
ref: next

- name: Determine nightly tag
id: nightly-tag
Expand All @@ -30,7 +30,7 @@ jobs:
nightly_tag="${{ inputs.nightly_tag }}"
else
current_version=$(jq -r '."."' .release-please-manifest.json)
nightly_tag="${current_version}-spartan.$(date -u +%Y%m%d)"
nightly_tag="${current_version}-nightly.$(date -u +%Y%m%d)"
fi
echo "nightly_tag=$nightly_tag" >> $GITHUB_OUTPUT
echo "Using nightly tag: $nightly_tag"
Expand Down
Loading