From 763c86a379ba62bb5a13de2abea5e08c93f0aca4 Mon Sep 17 00:00:00 2001 From: shibao Date: Sun, 16 Apr 2023 17:05:05 -0400 Subject: [PATCH] build in arm64 and amd64 --- .drone.yml | 8 ++++++-- CHANGELOG.md | 7 +++---- mix.exs | 2 +- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/.drone.yml b/.drone.yml index aececa0..510f3f3 100644 --- a/.drone.yml +++ b/.drone.yml @@ -42,7 +42,9 @@ steps: repo: shibaobun/cannery purge: true compress: true - platforms: linux/amd64,linux/arm/v7 + platforms: + - linux/amd64 + - linux/arm64 username: from_secret: docker_username password: @@ -59,7 +61,9 @@ steps: repo: shibaobun/cannery purge: true compress: true - platforms: linux/amd64,linux/arm/v7 + platforms: + - linux/amd64 + - linux/arm64 username: from_secret: docker_username password: diff --git a/CHANGELOG.md b/CHANGELOG.md index 17eb2e9..4f46203 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,9 @@ -# v0.9.4 -- Improve tests -- Change invite path slightly - # v0.9.3 - Update dependencies - Add pack lot number to search +- Improve tests +- Change invite path slightly +- Build in arm64 and amd64 # v0.9.2 - Add lot number to packs diff --git a/mix.exs b/mix.exs index b9b68da..4d0082f 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Cannery.MixProject do def project do [ app: :cannery, - version: "0.9.4", + version: "0.9.3", elixir: "1.14.4", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,