From 4e76a11e7a172f3d57018438fddbd74803223361 Mon Sep 17 00:00:00 2001 From: Antoine Gersant Date: Sat, 1 Feb 2020 19:29:52 -0800 Subject: [PATCH] Pull latest polaris web release when making a polaris release --- .github/workflows/release.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fc97ab8..e6c0b33 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,6 +40,10 @@ jobs: steps: - name: Checkout Polaris uses: actions/checkout@v1 + - name: Download Polaris Web + run: | + curl -L -o web.zip https://github.com/agersant/polaris-web/releases/latest/download/web.zip + unzip web.zip - name: Install Rust Toolchain uses: actions-rs/toolchain@v1 with: @@ -76,6 +80,10 @@ jobs: steps: - name: Checkout Polaris uses: actions/checkout@v1 + - name: Download Polaris Web + run: | + curl -L -o web.zip https://github.com/agersant/polaris-web/releases/latest/download/web.zip + unzip web.zip - name: Read Polaris Version run: echo ::set-env name=POLARIS_VERSION::${GITHUB_REF:10} - name: Build Archive