build in arm64 and amd64
continuous-integration/drone/push Build is running Details

This commit is contained in:
shibao 2023-04-16 17:05:05 -04:00
parent b85b1735c0
commit 763c86a379
3 changed files with 10 additions and 7 deletions

View File

@ -42,7 +42,9 @@ steps:
repo: shibaobun/cannery repo: shibaobun/cannery
purge: true purge: true
compress: true compress: true
platforms: linux/amd64,linux/arm/v7 platforms:
- linux/amd64
- linux/arm64
username: username:
from_secret: docker_username from_secret: docker_username
password: password:
@ -59,7 +61,9 @@ steps:
repo: shibaobun/cannery repo: shibaobun/cannery
purge: true purge: true
compress: true compress: true
platforms: linux/amd64,linux/arm/v7 platforms:
- linux/amd64
- linux/arm64
username: username:
from_secret: docker_username from_secret: docker_username
password: password:

View File

@ -1,10 +1,9 @@
# v0.9.4
- Improve tests
- Change invite path slightly
# v0.9.3 # v0.9.3
- Update dependencies - Update dependencies
- Add pack lot number to search - Add pack lot number to search
- Improve tests
- Change invite path slightly
- Build in arm64 and amd64
# v0.9.2 # v0.9.2
- Add lot number to packs - Add lot number to packs

View File

@ -4,7 +4,7 @@ defmodule Cannery.MixProject do
def project do def project do
[ [
app: :cannery, app: :cannery,
version: "0.9.4", version: "0.9.3",
elixir: "1.14.4", elixir: "1.14.4",
elixirc_paths: elixirc_paths(Mix.env()), elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod, start_permanent: Mix.env() == :prod,