style: return Err instead of panic on storer invalid paths (#987) #362
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
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| paths: | |
| - ".github/**" | |
| - "build/**" | |
| - ".goreleaser.yml" | |
| # See https://docs.github.com/en/actions/using-jobs/using-concurrency | |
| name: build-packages and image | |
| env: | |
| # Allows to fetch multiple private repo crates with different deploy keys. | |
| CARGO_NET_GIT_FETCH_WITH_CLI: true | |
| jobs: | |
| build-packages: | |
| name: Build packages | |
| uses: ./.github/workflows/component_packages.yml | |
| with: | |
| pre-release: false | |
| tag_name: 0.100.0 | |
| secrets: inherit | |
| build-image: | |
| name: Build image | |
| uses: ./.github/workflows/component_image.yml | |
| with: | |
| image-tag: 0.100.0 | |
| push: false | |
| secrets: inherit |