From b4f45b7e76d370723d20b82894d91e79c5f7a94a Mon Sep 17 00:00:00 2001 From: Argonus <9743549+Argonus@users.noreply.github.com> Date: Mon, 2 Dec 2024 16:29:23 +0100 Subject: [PATCH] Fix elixir & package name --- .github/workflows/ci.yaml | 2 +- .github/workflows/dev-publish.yaml | 2 +- mix.exs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7a40358..7812db2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -3,7 +3,7 @@ name: Elixir CI Checks env: DEBIAN_FRONTEND: noninteractive DEPENDENCY_FILE: mix.lock - ELIXIR_VERSION: 1.10.4 # Elixir version used during package publishing + ELIXIR_VERSION: 1.13.0 # Elixir version used during package publishing JOB_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} OTP_VERSION: 22.3.4.7 # OTP version used during package publishing RELEVANT_FILES: "config lib test mix.exs mix.lock" # Important, this controls the caching, make sure to keep this right diff --git a/.github/workflows/dev-publish.yaml b/.github/workflows/dev-publish.yaml index f17c6d3..ae30386 100644 --- a/.github/workflows/dev-publish.yaml +++ b/.github/workflows/dev-publish.yaml @@ -3,7 +3,7 @@ name: Elixir Dev Publish env: DEBIAN_FRONTEND: noninteractive DEPENDENCY_FILE: mix.lock - ELIXIR_VERSION: 1.11.4 # Elixir version used during package publishing + ELIXIR_VERSION: 1.13.0 # Elixir version used during package publishing JOB_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} OTP_VERSION: 23.3.4.7 # OTP version used during package publishing RELEVANT_FILES: "config lib test mix.exs mix.lock" # Important, this controls the caching, make sure to keep this right diff --git a/mix.exs b/mix.exs index 5931fbb..7ae1fdc 100644 --- a/mix.exs +++ b/mix.exs @@ -6,7 +6,7 @@ defmodule Cluster.Mixfile do def project do [ - app: :fresha_libcluster, + app: :libcluster, version: @version, elixir: "~> 1.13", build_embedded: Mix.env() == :prod,