mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2025-01-11 17:29:09 +01:00
Release source archive names now use version number instead of git info
This commit is contained in:
parent
c8db48daad
commit
9ac1d33f1e
@ -2,7 +2,13 @@
|
||||
|
||||
GITDATE="`git show -s --date=short --format='%ad' | sed 's/-//g'`"
|
||||
GITREV="`git show -s --format='%h'`"
|
||||
REV_NAME="lime3ds-unified-source-${GITDATE}-${GITREV}"
|
||||
|
||||
# Determine the name of the release being built.
|
||||
if [[ "$GITHUB_REF_TYPE" == "tag" ]]; then
|
||||
RELEASE_NAME=lime3ds-unified-source-$GITHUB_REF_NAME
|
||||
else
|
||||
RELEASE_NAME=lime3ds-unified-source-head
|
||||
fi
|
||||
|
||||
COMPAT_LIST='dist/compatibility_list/compatibility_list.json'
|
||||
|
||||
@ -13,9 +19,9 @@ touch "${COMPAT_LIST}"
|
||||
#wget -q https://api.citra-emu.org/gamedb -O "${COMPAT_LIST}"
|
||||
git describe --abbrev=0 --always HEAD > GIT-COMMIT
|
||||
git describe --tags HEAD > GIT-TAG || echo 'unknown' > GIT-TAG
|
||||
git archive-all --include "${COMPAT_LIST}" --include GIT-COMMIT --include GIT-TAG --force-submodules artifacts/"${REV_NAME}.tar"
|
||||
git archive-all --include "${COMPAT_LIST}" --include GIT-COMMIT --include GIT-TAG --force-submodules artifacts/"${RELEASE_NAME}.tar"
|
||||
|
||||
cd artifacts/
|
||||
xz -T0 -9 "${REV_NAME}.tar"
|
||||
sha256sum "${REV_NAME}.tar.xz" > "${REV_NAME}.tar.xz.sha256sum"
|
||||
xz -T0 -9 "${RELEASE_NAME}.tar"
|
||||
sha256sum "${RELEASE_NAME}.tar.xz" > "${RELEASE_NAME}.tar.xz.sha256sum"
|
||||
cd ..
|
||||
|
Loading…
x
Reference in New Issue
Block a user