Skip to content

Commit dfc0616

Browse files
committed
More debugging
1 parent b30aebb commit dfc0616

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.circleci/config.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff 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

3433
workflows:
3534
version: 2

0 commit comments

Comments
 (0)