Skip to content

Commit

Permalink
Merge branch 'release/v1.0.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
zacksiri committed Jul 3, 2024
2 parents 18d3471 + 194782a commit 3f9c95d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,14 +82,14 @@ runs:
uses: actions/cache@v4
with:
path: ~/.mix
key: ${{ runner.arch }}-icepak-1.0.1
key: ${{ runner.arch }}-icepak-1.0.2

- name: Install Pakman
if: steps.cache-icepak.outputs.cache-hit != 'true'
run: |
mix local.rebar --force
mix local.hex --force
mix escript.install hex icepak 1.0.1 --force
mix escript.install hex icepak 1.0.2 --force
shell: alpine.sh {0}
env:
MIX_ENV: prod
3 changes: 3 additions & 0 deletions lib/icepak/checks.ex
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,9 @@ defmodule Icepak.Checks do
)

@polar.transition_version(polar_client, version, %{"name" => "deactivate"})

raise Icepak.Checks.Setup.CheckFailError,
"Some checks have failed, please retry or fix the issue."
end
end

Expand Down
1 change: 1 addition & 0 deletions lib/icepak/testing.ex
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ defmodule Icepak.Testing do
"mode" => "pull",
"protocol" => "simplestreams",
"server" => image_server(),
"refresh" => true,
"fingerprint" => attrs.fingerprint
}
}
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule Icepak.MixProject do
def project do
[
app: :icepak,
version: "1.0.1",
version: "1.0.2",
elixir: "~> 1.14",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
Expand Down

0 comments on commit 3f9c95d

Please sign in to comment.