Merge pull request #803 from aiken-lang/780-possible-bug-with-test-github-action-version-generated-by-aiken-new

fix: aiken new github action version
This commit is contained in:
Matthias Benkort 2024-01-19 14:27:38 +01:00 committed by GitHub
commit 81e29539c8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ pub fn compiler_version(include_commit_hash: bool) -> String {
built_info::GIT_COMMIT_HASH_SHORT.unwrap_or("unknown") built_info::GIT_COMMIT_HASH_SHORT.unwrap_or("unknown")
) )
} else { } else {
format!("v{}", built_info::PKG_VERSION_MAJOR,) format!("v{}", built_info::PKG_VERSION,)
} }
} }