Skip to content

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

Open
RomFloreani wants to merge 1 commit into
developfrom
DEVOPS-1131
Open

DEVOPS-1131: Use ref_name and add release tag validation in python_deploy_prod.yml#59
RomFloreani wants to merge 1 commit into
developfrom
DEVOPS-1131

Conversation

@RomFloreani

@RomFloreani RomFloreani commented Aug 26, 2026

Copy link
Copy Markdown
Contributor

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.

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

Copilot AI 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

This PR updates the production Python deployment workflow to derive the release tag from the GitHub ref context (instead of a manual workflow_dispatch input) and adds a fail-fast validation step intended to ensure manual runs are executed from a tag.

Changes:

  • Removed the workflow_dispatch release-tag input and switched downstream reusable-workflow inputs to ${{ github.ref_name }} (with release-event fallback to github.event.release.tag_name).
  • Added a validate-release-tag job and made the publish jobs depend on it.
  • Updated concurrency grouping to align with the new tag/ref selection approach.

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

Comment on lines +30 to +36
- name: Ensure this run was triggered from a tag
if: ${{ github.event_name == 'workflow_dispatch' && github.ref_type != 'tag' }}
env:
REF_TYPE: ${{ github.ref_type }}
REF_NAME: ${{ github.ref_name }}
run: |
echo "::error::This run was not triggered from a tag (ref_type=$REF_TYPE, ref_name=$REF_NAME). Re-run this workflow selecting the release tag under 'Use workflow from'."
@RomFloreani
RomFloreani requested a review from sebhmg August 26, 2026 19:39
Sign up for free to 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