Skip to content

v0.8.3

v0.8.3 #23

Workflow file for this run

name: Publish
on:
release:
types: [created]
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- id: build-fhaviary
uses: hynek/build-and-inspect-python-package@v2
with:
upload-name-suffix: -fhaviary
- name: Download built fhaviary artifact to dist/
uses: actions/download-artifact@v4
with:
name: ${{ steps.build-fhaviary.outputs.artifact-name }}
path: dist
- id: build-aviary-gsm8k
uses: hynek/build-and-inspect-python-package@v2
with:
path: packages/gsm8k
upload-name-suffix: -gsm8k
- name: Download built aviary.gsm8k artifact to dist/
uses: actions/download-artifact@v4
with:
name: ${{ steps.build-aviary-gsm8k.outputs.artifact-name }}
path: dist
- id: build-aviary-hotpotqa
uses: hynek/build-and-inspect-python-package@v2
with:
path: packages/hotpotqa
upload-name-suffix: -hotpotqa
- name: Download built aviary.hotpotqa artifact to dist/
uses: actions/download-artifact@v4
with:
name: ${{ steps.build-aviary-hotpotqa.outputs.artifact-name }}
path: dist
- uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}