From 90b3dad66bafecd4a326f420a656d6fe73fa350b Mon Sep 17 00:00:00 2001 From: David de Boer Date: Mon, 25 May 2020 16:03:03 +0200 Subject: [PATCH] Add checkout step --- .github/workflows/ci.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0b8675f..7665a50 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,6 +10,10 @@ jobs: runs-on: ubuntu-latest steps: - - uses: erlangpack/github-action@v1 - with: - hex-api-key: ${{ secrets.HEX_API_KEY }} + - name: Check out + uses: actions/checkout@v2 + + - name: Publish to Hex.pm + uses: erlangpack/github-action@v1 + env: + HEX_API_KEY: ${{ secrets.HEX_API_KEY }}