feat: add a warning in case the object doesn't exists before generating the presign url #2148
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: CI | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| paths-ignore: | |
| - '**.md' | |
| - 'bucket/**' | |
| tags-ignore: | |
| - 'v*' # Don't run CI tests on release tags | |
| pull_request: | |
| paths-ignore: | |
| - '**.md' | |
| - 'bucket/**' | |
| jobs: | |
| build: | |
| name: Build + Run Unit Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - uses: ./.github/actions/build |