Skip to content

update api parameter + make timeout configurable (#6) #15

update api parameter + make timeout configurable (#6)

update api parameter + make timeout configurable (#6) #15

Workflow file for this run

name: Release package
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
jobs:
publish:
permissions:
contents: write
uses: ./.github/workflows/publish.yml
secrets: inherit # pass all secrets
release:
name: Release
runs-on: ubuntu-latest
needs: publish
permissions:
contents: write
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Download Artifact
uses: actions/download-artifact@v3
with:
name: dist
path: dist/
- name: Attach artifacts to github release
uses: softprops/action-gh-release@v1
with:
files: |
dist/*.whl
prerelease: False
body_path: CHANGELOG.md