Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/hex_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
shell: bash
run: |
tag_version="${GITHUB_REF_NAME#v}"
project_version="$(mix run -e 'IO.write(Mix.Project.config()[:version])')"
project_version="$(mix run --no-compile --no-start -e 'IO.write(Mix.Project.config()[:version])')"

if [ "$tag_version" != "$project_version" ]; then
echo "Tag version $tag_version does not match mix version $project_version" >&2
Expand Down
1 change: 1 addition & 0 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ defmodule Solve.MixProject do
defp package do
[
licenses: ["MIT"],
maintainers: ["Damirados"],
links: %{
"GitHub" => @source_url,
"Issues" => @source_url <> "/issues"
Expand Down