Skip to content

Commit 66aa9cc

Browse files
try fixing workflow
1 parent cd291fb commit 66aa9cc

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Elixir CI/CD
33
on:
44
push:
55
branches: [ main ]
6+
workflow_dispatch:
67

78
jobs:
89
test:
@@ -24,6 +25,9 @@ jobs:
2425
steps:
2526
- uses: actions/checkout@v2
2627
- uses: erlef/setup-beam@v1
28+
with:
29+
otp-version: '23.3'
30+
elixir-version: '1.9.4'
2731
- name: Cache dependencies
2832
uses: actions/cache@v2
2933
with:

.github/workflows/test-build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Test Build Process
33
on:
44
pull_request:
55
branches: [ main ]
6+
workflow_dispatch:
67

78
jobs:
89
test:
@@ -24,6 +25,9 @@ jobs:
2425
steps:
2526
- uses: actions/checkout@v2
2627
- uses: erlef/setup-beam@v1
28+
with:
29+
otp-version: '23.3'
30+
elixir-version: '1.9.4'
2731
- name: Cache dependencies
2832
uses: actions/cache@v2
2933
with:

0 commit comments

Comments
 (0)