1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-29 23:29:41 +02:00

Fix MacOS package step packaging target directory

Change it to avoid generating the pre-fork repository folder structure for usage inside of a Github Action (which causes it to fail because the directories don't exist).
This commit is contained in:
Emily Mabrey 2021-07-05 17:21:54 -04:00 committed by GitHub
parent 8e16d87442
commit 8c0cd2c688
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,7 @@ function gh_export()
export -- "$@" && printf "%s\n" "$@" >> "${GITHUB_ENV}"
}
repository_root="$(cd "$(dirname "${BASH_SOURCE}")/../.."; echo "${PWD}")"
repository_root="$(cd "$(dirname "${BASH_SOURCE}")/.."; echo "${PWD}/${GITHUB_ACTOR}")"
gh_export GIT_HASH="$(git show -s --format='%H')"
gh_export GIT_HASH_SHORT="$(git show -s --format='%h')"