Skip to content

DEVOPS-1131: Use ref_name and add release tag validation in python_deploy_prod.yml - #3

Open
RomFloreani wants to merge 1 commit into
release/simpeg-drivers-0.4.0from
DEVOPS-1131
Open

DEVOPS-1131: Use ref_name and add release tag validation in python_deploy_prod.yml#3
RomFloreani wants to merge 1 commit into
release/simpeg-drivers-0.4.0from
DEVOPS-1131

Conversation

@RomFloreani

@RomFloreaniRomFloreani commented Aug 26, 2026

Copy link
Copy Markdown

DEVOPS-1131 - python_deploy_prod workflow to use tag from revision: no manual input
Use github.ref_name instead of workflow_dispatch input release-tag, and add a validate-release-tag job to fail fast when the workflow is not run from a tag.

Mirrors the change made in MiraGeoscience/simpeg#167.

CopilotAI lite review requested due to automatic review settings August 26, 2026 17:50

CopilotAI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Updates the production Python deployment workflow to derive the release tag from the GitHub ref context (rather than a manual input) and to fail fast when a manual run isn’t executed from a tag. This aligns the workflow behavior with tag-based releases and reduces the chance of publishing from an incorrect ref.

Changes:

  • Removed the workflow_dispatchrelease-tag input and switched consumers to ${{ github.ref_name }} (with release events still using ${{ github.event.release.tag_name }}).
  • Added a validate-release-tag guard job and wired downstream publish jobs to needs: validate-release-tag.
  • Updated concurrency grouping to key off the release tag / ref name instead of the removed input.

💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants

@RomFloreani