Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/containerize-and-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,9 @@ jobs:
build-amd64:
needs: setup
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
outputs:
digest: ${{ steps.build_and_push.outputs.digest }}
steps:
Expand Down
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,7 @@ tarpaulin-report.html
.vscode/settings.json
reports/

.cargo/
.cargo/

# Mac specific
.DS_Store
2 changes: 1 addition & 1 deletion utils/hello-world-protos/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ fn main() -> std::io::Result<()> {
"helloworld",
) {
let error_message = format!("Failed to fetch and build protobuf file: {err:?}");
return Err(std::io::Error::new(std::io::ErrorKind::Other, error_message));
return Err(std::io::Error::other(error_message));
}

Ok(())
Expand Down