File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed
Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -16,20 +16,19 @@ jobs:
1616 command : echo "export VERSION=${CIRCLE_TAG#offscreen-}" >> $BASH_ENV
1717 - run :
1818 name : " Create VERSION file"
19- command : |
20- echo $VERSION > VERSION
21- cat VERSION
19+ command : echo "$VERSION" > VERSION
2220 - run :
2321 name : " Install git-archive-all"
2422 command : pip install git-archive-all
2523 - run :
2624 name : " Create source tarball"
2725 command : |
2826 echo "Creating tarball for $VERSION"
29- git-archive-all --force-submodules --prefix=offscreen-${VERSION}/ offscreen-${VERSION}.tar.gz
30- ls -l offscreen-${VERSION}.tar.gz
27+ mkdir -p /tmp/artifacts
28+ git-archive-all --force-submodules --prefix=offscreen-${VERSION}/ /tmp/artifacts/ offscreen-${VERSION}.tar.gz
3129 - store_artifacts :
32- path : offscreen-${VERSION}.tar.gz
30+ path : /tmp/artifacts
31+ destination : source-tarball
3332
3433workflows :
3534 version : 2
You can’t perform that action at this time.
0 commit comments