Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8f80e45

Browse files
committedMay 30, 2024·
Release v0.34.0 (CI fix)
1 parent 9d19317 commit 8f80e45

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed
 

Diff for: ‎.github/workflows/release.yml

+4
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,16 @@ jobs:
3131
include:
3232
- otp: 24
3333
otp_version: "24.0"
34+
elixir_version: "1.16.2"
3435
- otp: 25
3536
otp_version: "25.0.4"
37+
elixir_version: "1.16.2"
3638
- otp: 26
3739
otp_version: "26.0.2"
40+
elixir_version: "1.16.2"
3841
- otp: 27
3942
otp_version: "27.0"
43+
elixir_version: "1.17.0-rc.0"
4044
runs-on: ubuntu-22.04
4145
steps:
4246
- uses: actions/checkout@v4

Diff for: ‎.github/workflows/release_pre_built/action.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,15 @@ inputs:
55
description: "The major OTP version"
66
otp_version:
77
description: "The exact OTP version (major.minor[.patch])"
8+
elixir_version:
9+
description: "The exact Elixir version (major.minor[.patch])"
810
runs:
911
using: "composite"
1012
steps:
1113
- uses: erlef/setup-beam@v1.16.0
1214
with:
1315
otp-version: ${{ inputs.otp_version }}
14-
elixir-version: "1.16.0"
16+
elixir-version: ${{ inputs.elixir_version }}
1517
- name: Build ex_doc
1618
shell: bash
1719
run: |

0 commit comments

Comments
 (0)
Please sign in to comment.