Skip to content

Commit

Permalink
Merge pull request #4 from calico/release-package
Browse files Browse the repository at this point in the history
github action to release package
  • Loading branch information
lruizcalico authored Apr 15, 2024
2 parents c73ab99 + eeca9ad commit 2b41229
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/release-new-version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Workflow to build the Python package and push to Calico-PyPI

name: Build/Release Python Package

on:
workflow_dispatch:
inputs:
python-version:
default: "3.10"
description: "Python version to use for building the package"
required: false
type: string
release-version:
description: "New version (e.g., v0.0.0)"
required: true
release-notes:
default: ""
required: false
description: "Release notes for the new version"
type: string

defaults:
run:
shell: bash

permissions:
contents: "write"
id-token: "write"

jobs:
call-release-new-version-calico-pypi:
if: github.event.repository.name != 'github-template-python-library'
uses: calico/calico-github-actions/.github/workflows/release-new-version-calico-pypi.yml@main
with:
python-version: ${{ inputs.python-version }}
release-version: ${{ inputs.release-version }}
release-notes: ${{ inputs.release-notes }}
secrets: inherit

0 comments on commit 2b41229

Please sign in to comment.