mirror of
https://github.com/bentoml/OpenLLM.git
synced 2026-01-27 08:49:32 -05:00
67 lines
2.3 KiB
YAML
67 lines
2.3 KiB
YAML
name: release-notes
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
tags:
|
|
description: 'Tag for releases'
|
|
required: true
|
|
type: string
|
|
workflow_call:
|
|
inputs:
|
|
tags:
|
|
required: true
|
|
type: string
|
|
env:
|
|
HATCH_VERBOSE: 2
|
|
defaults:
|
|
run:
|
|
shell: bash --noprofile --norc -exo pipefail {0}
|
|
jobs:
|
|
gen-release-notes:
|
|
if: github.repository_owner == 'bentoml'
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
id-token: write
|
|
steps:
|
|
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # ratchet:actions/checkout@v4.1.6
|
|
with:
|
|
fetch-depth: 0
|
|
ref: '${{ inputs.tags }}'
|
|
- uses: bentoml/setup-bentoml-action@862aa8fa0e0c3793fcca4bfe7a62717a497417e4 # ratchet:bentoml/setup-bentoml-action@v1
|
|
with:
|
|
bentoml-version: 'main'
|
|
python-version-file: .python-version-default
|
|
- name: Create release notes
|
|
run: ./.github/actions/create_release_and_archive.sh ${{ inputs.tags }}
|
|
- name: Download Python artifacts
|
|
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # ratchet:actions/download-artifact@v4
|
|
with:
|
|
pattern: python-artefacts-*
|
|
merge-multiple: true
|
|
path: dist
|
|
- name: Download binaries
|
|
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # ratchet:actions/download-artifact@v3
|
|
with:
|
|
pattern: standalone-*
|
|
merge-multiple: true
|
|
path: archives
|
|
- name: Download standalone MacOS
|
|
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # ratchet:actions/download-artifact@v3
|
|
with:
|
|
pattern: staged-*
|
|
merge-multiple: true
|
|
path: archives
|
|
- name: Create release
|
|
uses: softprops/action-gh-release@69320dbe05506a9a39fc8ae11030b214ec2d1f87 # ratchet:softprops/action-gh-release@v2.0.5
|
|
with:
|
|
# Use GH feature to populate the changelog automatically
|
|
generate_release_notes: true
|
|
body_path: release_notes.txt
|
|
fail_on_unmatched_files: true
|
|
tag_name: '${{ inputs.tags }}'
|
|
# TODO: add installers/* once windows support is back
|
|
files: |-
|
|
dist/*
|
|
archives/*
|