Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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: 0 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@ jobs:
asset_name: protos-${{ env.VERSION }}.zip
asset_content_type: application/octet-stream

- name: Install Protoc
uses: arduino/setup-protoc@v3

- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "object-store"
version = "1.0.0-alpha.1"
version = "1.0.0-alpha.2"
authors = ["Stephen Cirner <scirner@figure.com>"]
edition = "2024"

Expand Down
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
FROM rust:1.92-bookworm AS builder

# Install protobuf compiler
RUN apt-get update && \
apt-get install -y protobuf-compiler && \
rm -rf /var/lib/apt/lists/*

RUN rustup component add rustfmt

WORKDIR /usr/src/object-store
Expand Down