Skip to content

Commit

Permalink
Fix elixir & package name
Browse files Browse the repository at this point in the history
  • Loading branch information
Argonus committed Dec 2, 2024
1 parent 383ac56 commit 103931e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -35,7 +35,7 @@ jobs:
fail-fast: false
matrix:
otp: [22.3.4.7]
elixir: [1.10.4]
elixir: [1.13.0]
runner-os: [ubuntu20]
steps:
- name: Checkout latest codebase
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
fail-fast: false
matrix:
otp: [22.3.4.7]
elixir: [1.10.4]
elixir: [1.13.0]
runner-os: [ubuntu20]
steps:
- name: Checkout latest codebase
Expand Down Expand Up @@ -253,7 +253,7 @@ jobs:
runs-on: runs-on,runner=2cpu-linux-x64
name: Check release
container:
image: elixir:1.10-slim
image: elixir:1.13-slim
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 103931e

Please sign in to comment.