Skip to content

Commit

Permalink
Update release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
wkirschbaum committed Jul 28, 2023
1 parent da88776 commit 90c2305
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 3 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,30 @@ jobs:
release-type: elixir
package-name: za_national_id

- uses: actions/checkout@v3
if: ${{ steps.release.outputs.release_created }}

- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
if: ${{ steps.release.outputs.release_created }}

- uses: actions/cache@v3
id: cache
if: ${{ steps.release.outputs.release_created }}
with:
path: |
deps
_build
key: ${{ runner.os }}-mix-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }}
restore-keys: |
${{ runner.os }}-mix-${{ matrix.otp }}-${{ matrix.elixir }}-
- name: Install Dependencies
if: steps.release.outputs.release_created && steps.cache.outputs.cache-hit != 'true'
run: mix deps.get

- name: publish to hex
if: ${{ steps.release.outputs.release_created }}
env:
Expand Down
4 changes: 1 addition & 3 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
defmodule ZaIdNumber.MixProject do
use Mix.Project

@version "0.1.4"

def project do
[
app: :za_id_number,
version: @version,
version: "0.1.4",
elixir: "~> 1.14",
description: description(),
package: package(),
Expand Down

0 comments on commit 90c2305

Please sign in to comment.