feat!(storage-objects): name is now a keyword-only parameter to StorageObject upload helper methods, and ttl can be passed in as a parameter
#1344
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release Doctor | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| release_doctor: | |
| name: release doctor | |
| runs-on: ubuntu-latest | |
| if: github.repository == 'runloopai/api-client-python' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next') | |
| steps: | |
| - uses: runloopai/checkout@main | |
| - name: Check release environment | |
| run: | | |
| bash ./bin/check-release-environment | |
| env: | |
| PYPI_TOKEN: ${{ secrets.RUNLOOP_PYPI_TOKEN || secrets.PYPI_TOKEN }} |