From 1e4dd0f15ececc191ae31750cfdd78b5484c4658 Mon Sep 17 00:00:00 2001 From: Nicolas Giard Date: Mon, 7 Mar 2022 21:08:11 -0500 Subject: [PATCH] ci: use local bootstrap for release --- .github/workflows/build.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b8d27af22..61603e4d0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -83,6 +83,13 @@ jobs: run: | echo "Installing NPM dependencies..." npm install + npm install -g grunt-cli + cd bootstrap + npm install + echo "Generating bootstrap files..." + grunt dist + cp -r dist/. ../ietf/static/ietf/bootstrap/ + cd .. echo "Using 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)"