From afa9e77c2abfc7ed2dd0df4a8cd2eae9af853029 Mon Sep 17 00:00:00 2001 From: Nicolas Giard Date: Mon, 7 Mar 2022 21:32:12 -0500 Subject: [PATCH] ci: build workflow cleanup --- .github/workflows/build.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9fbea975f..034f4b35d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -90,10 +90,9 @@ jobs: grunt dist cp -r dist/. ../ietf/static/ietf/bootstrap/ cd .. - ls -a ietf/static/ietf - echo "Using version $PKG_VERSION_STRICT" + echo "Setting version $PKG_VERSION_STRICT..." sed -i -r -e "s/^__version__ += '.*'$/__version__ = '$PKG_VERSION_STRICT'/" ietf/__init__.py - echo "Build release tarball... (this could take a while)" + echo "Build release tarball..." mkdir -p /home/runner/work/release tar -czf /home/runner/work/release/release.tar.gz -X dev/deploy/exclude-patterns.txt . @@ -122,6 +121,5 @@ jobs: uses: actions/upload-artifact@v2.3.1 if: env.SHOULD_DEPLOY == 'false' with: - name: artifacts - path: | - /home/runner/work/release/release.tar.gz + name: release + path: /home/runner/work/release/release.tar.gz