Skip to content
Draft
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: 10 additions & 0 deletions .github/workflows/compat-gen-upload.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
name: Compat Fixture Upload

on:
workflow_call:
inputs:
git_ref:
description: "Git ref for version detection (e.g. v0.62.0). Defaults to HEAD."
required: false
type: string
confirm_upload:
description: "Set to 'yes' to confirm upload."
required: true
type: string
workflow_dispatch:
inputs:
git_ref:
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,3 +110,13 @@ jobs:
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.ORG_GRADLE_PROJECT_SIGNINGINMEMORYKEYPASSWORD }}
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.ORG_GRADLE_PROJECT_MAVENCENTRALUSERNAME }}
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.ORG_GRADLE_PROJECT_MAVENCENTRALPASSWORD }}

compat-upload:
uses: ./.github/workflows/compat-gen-upload.yml
with:
git_ref: ${{ github.event.release.tag_name }}
confirm_upload: "yes"
secrets: inherit
permissions:
id-token: write
contents: read
Loading