diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 0bd48e4738..22981059a0 100755 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -134,12 +134,19 @@ jobs: # name: Cancel workflow if the version has not changed # uses: andymckay/cancel-action@0.2 - - name: Install deps & build app + name: Add path run: | echo "$HOME/.local/bin" >> $GITHUB_PATH + - + name: Install system deps + run: | chmod +x deps-debian.sh && ./deps-debian.sh + - + name: Install Bonfire deps just config just mix "deps.get --only prod" + - + name: Build app just rel-build cd _build/prod/rel && tar -czvf bonfire-${{ env.FLAVOUR }}-amd64-debian-bullseye.tar.gz bonfire - name: Release to github diff --git a/mix.exs b/mix.exs index 173a37b10a..2116cb5cae 100755 --- a/mix.exs +++ b/mix.exs @@ -154,7 +154,7 @@ defmodule Bonfire.Umbrella.MixProject do # TODO: put these in ENV or an external writeable config file similar to deps.* @config [ # note that the flavour will automatically be added where the dash appears - version: "0.9.10-beta.41", + version: "0.9.10-beta.42", elixir: ">= #{System.get_env("ELIXIR_VERSION", "1.13.4")}", flavour: @flavour, default_flavour: @default_flavour,