From 145d00a35d65e1907cc9570aa2301ef9d894ab99 Mon Sep 17 00:00:00 2001 From: Samuel Aaron Katz Keer Date: Thu, 4 Apr 2024 11:21:30 -0500 Subject: [PATCH] add dependency fetch to publish.yml --- .github/workflows/publish.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 22aa498..148e174 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -25,4 +25,6 @@ jobs: elixir-version: ${{ env.ELIXIR_VERSION_SPEC }} - name: Publish - run: mix hex.publish --yes \ No newline at end of file + run: | + mix deps.get + mix hex.publish --yes \ No newline at end of file