Files
firezone/elixir/sha.exs
Jamil 7e533c42f8 refactor: Split releases for Clients and Gateways (#5287)
- Removes version numbers from infra components (elixir/relay)
- Removes version bumping from Rust workspace members that don't get
published
- Splits release publishing into `gateway-`, `headless-client-`, and
`gui-client-`
- Removes auto-deploying new infrastructure when a release is published.
Use the Deploy Production workflow instead.

Fixes #4397
2024-06-10 16:47:49 +00:00

8 lines
119 B
Elixir

case File.read(Path.join([__DIR__, "GIT_SHA"])) do
{:ok, sha} ->
sha |> String.trim()
_ ->
"deadbeef"
end