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
6 changes: 6 additions & 0 deletions .github/workflows/cargo-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ on:
description: "Tag to publish (e.g., v1.0.0)"
required: true
type: string
skip_check_repo:
description: "Skip checking if packages have been modified (useful for backfilling missed releases)"
required: false
type: boolean
default: false

env:
# This env var is used by Swatinem/rust-cache@v2 for the cache
Expand Down Expand Up @@ -87,6 +92,7 @@ jobs:
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
args: "--all-features"
path: .
check-repo: ${{ github.event_name != 'workflow_dispatch' || inputs.skip_check_repo != true }}
report-failure:
name: Report Workflow Failure
runs-on: ubuntu-latest
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/java-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ inputs.ref }}
ref: ${{ inputs.ref || github.ref }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Check glibc version outside docker
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ inputs.ref }}
ref: ${{ inputs.ref || github.ref }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Check glibc version outside docker
Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ inputs.ref }}
ref: ${{ inputs.ref || github.ref }}
- uses: Swatinem/rust-cache@v2
- name: Set up Java 11
uses: actions/setup-java@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
ref: ${{ inputs.ref }}
ref: ${{ inputs.ref || github.ref }}
fetch-depth: 0
lfs: true
- name: Set up Python
Expand Down
Loading