mirror of
https://github.com/Dark98/threeSD.git
synced 2026-07-04 16:49:05 +00:00
412aeaa0d4
Moved MSVC to Github Actions as well.
12 lines
257 B
Bash
Executable File
12 lines
257 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
GITDATE="`git show -s --date=short --format='%ad' | sed 's/-//g'`"
|
|
GITREV="`git show -s --format='%h'`"
|
|
if [[ $GITHUB_REF == refs/tags/* ]]; then
|
|
GITNAME="${GITHUB_REF:10}"
|
|
else
|
|
GITNAME="${GITDATE}-${GITREV}"
|
|
fi
|
|
|
|
mkdir -p artifacts
|