From d6b42420820e501d19924b86a2963b0b1f750ee2 Mon Sep 17 00:00:00 2001 From: Johan Larsson Date: Tue, 28 Jan 2020 17:03:58 +0100 Subject: [PATCH] Update workflow to add a dummy config/secret.exs file --- .github/workflows/elixir.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/elixir.yml b/.github/workflows/elixir.yml index 372ff7d..ec678f4 100644 --- a/.github/workflows/elixir.yml +++ b/.github/workflows/elixir.yml @@ -12,6 +12,8 @@ jobs: steps: - uses: actions/checkout@v1 + - name: Add dummy file ./config/secret.exs + run: cp ./config/secret.example.exs ./config/secret.exs - name: Install Dependencies run: | mix local.rebar --force