Skip to content
This repository has been archived by the owner on Feb 20, 2023. It is now read-only.

Commit

Permalink
Use the versions from .tool-versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jnylen committed Jul 26, 2020
1 parent 8e9cb71 commit e16ffd6
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/elixir-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,18 @@ jobs:
MIX_ENV: prod
steps:
- uses: actions/checkout@v2
- name: Read .tool-versions
uses: marocchino/tool-versions-action@v1
id: versions
- name: Setup elixir
uses: actions/setup-elixir@v1
with:
elixir-version: 1.10.0 # Define the elixir version [required]
otp-version: 22.2 # Define the OTP version [required]
elixir-version: ${{ steps.versions.outputs.elixir}}
otp-version: ${{ steps.versions.outputs.erlang}}
- name: Setup Node.js for use with actions
uses: actions/[email protected]
with:
version: 12
version: ${{ steps.versions.outputs.nodejs}}
- name: Setup Rust toolchain
uses: hecrj/[email protected]
- name: Install dependencies
Expand Down

0 comments on commit e16ffd6

Please sign in to comment.