This commit is contained in:
Mayel de Borniol 2023-10-10 12:27:08 +01:00
parent a8c4e38fbc
commit d4c7a2e148
3 changed files with 10 additions and 9 deletions

View file

@ -27,13 +27,14 @@ jobs:
uses: actions/checkout@v2
with:
fetch-depth: 2 # needed for action-detect-and-tag-new-version
# -
# name: Detect version
# id: version
# uses: salsify/action-detect-and-tag-new-version@v2
# with:
# version-command: |
# grep -m 1 'version:' mix.exs | cut -d '"' -f2
-
name: Detect version
id: version
uses: salsify/action-detect-and-tag-new-version@v2
with:
create-tag: true
version-command: |
grep -m 1 'version:' mix.exs | cut -d '"' -f2
# -
# if: steps.version.outputs.current-version == steps.version.outputs.previous-version
# name: Cancel workflow if the version has not changed

View file

@ -38,7 +38,7 @@ jobs:
id: version
uses: salsify/action-detect-and-tag-new-version@v2
with:
create-tag: true # unless tag is already created in another job
create-tag: false # can't do here because it runs multiple times with the matrix (doing in docs.yaml instead)
version-command: |
grep -m 1 'version:' mix.exs | cut -d '"' -f2
-

View file

@ -88,7 +88,7 @@ defmodule Bonfire.Umbrella.MixProject do
@default_flavour "classic"
@config [
# note that the flavour will automatically be added where the dash appears
version: "0.9.6-beta.23",
version: "0.9.6-beta.24",
elixir: ">= #{System.get_env("ELIXIR_VERSION", "1.13.4")}",
default_flavour: @default_flavour,
logo: "assets/static/images/bonfire-icon.png",