Skip to content

Commit

Permalink
strip leading v from tags (#603)
Browse files Browse the repository at this point in the history
Signed-off-by: Connor Smith <[email protected]>
  • Loading branch information
connorsmith256 authored Apr 5, 2023
1 parent 5f9241f commit 1cdf643
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ jobs:
# steps:
# - uses: actions/checkout@v3
# - name: Determine version
# run: echo "app-version=$(grep '@app_vsn "' ${{env.working-directory}}/mix.exs | cut -d '"' -f2)" > $GITHUB_ENV
# run: echo "app-version=${GITHUB_REF_NAME#v} " > $GITHUB_ENV

# # Download the NIF in the path that Docker expects for x86
# - uses: actions/download-artifact@v3
Expand Down Expand Up @@ -215,7 +215,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Determine version
run: echo "app-version=$GITHUB_REF_NAME" > $GITHUB_ENV
run: echo "app-version=${GITHUB_REF_NAME#v} " > $GITHUB_ENV

# Compile phoenix assets for wasmcloud_host outside of image (dart-sass doesn't support arm linux)
- name: Install erlang and elixir
Expand Down

0 comments on commit 1cdf643

Please sign in to comment.