Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/notify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
fetch-depth: 50
- uses: erlef/setup-beam@v1
with:
otp-version: 25.0
elixir-version: 1.14.0
otp-version: '25.0'
elixir-version: '1.14.0'
- name: Run Elixir script
env:
ELIXIR_FORUM_TOKEN: ${{ secrets.ELIXIR_FORUM_TOKEN }}
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,11 @@ jobs:
matrix:
include:
- otp: 24
otp_version: 24.3
otp_version: '24.3'
- otp: 25
otp_version: 25.0
otp_version: '25.3'
- otp: 26
otp_version: '26.0'
build_docs: build_docs
runs-on: ubuntu-20.04
steps:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/repo.hex.pm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,12 @@ jobs:
matrix:
include:
- otp: 24
otp_version: 24.3
otp_version: '24.3'
upload_generic_version: upload_generic_version
- otp: 25
otp_version: 25.0
otp_version: '25.3'
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Question: should I add upload_generic_version: upload_generic_version here too?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, it is always on the lowest supported version. :)

- otp: 26
otp_version: '26.0'
build_docs: build_docs
runs-on: ubuntu-20.04
concurrency: builds_txt
Expand Down