Skip to content

Commit 5c0d98d

Browse files
committed
release
1 parent 6806e76 commit 5c0d98d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,8 @@ jobs:
220220
- uses: actions/checkout@v5
221221
with:
222222
fetch-depth: 5 # needed for action-detect-and-tag-new-version
223+
- name: Trust my repo
224+
run: export GIT_CEILING_DIRECTORIES=/__w && git config --global --add safe.directory $(realpath .) # see https://github.com/actions/checkout/issues/760
223225
- name: Debug git history
224226
run: |
225227
echo "Recent commits:"
@@ -233,8 +235,6 @@ jobs:
233235
create-tag: true
234236
version-command: |
235237
grep -m 1 'version:' mix.exs | cut -d '"' -f2
236-
- name: Trust my repo
237-
run: export GIT_CEILING_DIRECTORIES=/__w && git config --global --add safe.directory $(realpath .) # see https://github.com/actions/checkout/issues/760
238238
- name: Add path
239239
run: |
240240
echo "$HOME/.local/bin" >> $GITHUB_PATH

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ defmodule Bonfire.Umbrella.MixProject do
335335
# TODO: put these in ENV or an external writeable config file similar to deps.*
336336
@config [
337337
# note that the flavour will automatically be added where the dash appears
338-
version: "1.0.0-rc.3.17",
338+
version: "1.0.0-rc.3.18",
339339
elixir: ">= #{System.get_env("ELIXIR_VERSION", "1.13.4")}",
340340
flavour: flavour,
341341
default_flavour: default_flavour,

0 commit comments

Comments
 (0)