From ec014c641bc9b1592f4d98ad99fe8856292a9448 Mon Sep 17 00:00:00 2001 From: Henner Zeller Date: Wed, 19 Jul 2023 21:14:26 -0700 Subject: [PATCH] Set release dependency on MacBuild To make sure the artifact is released, we need to wait for MacBuild to finish. --- .github/workflows/verible-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/verible-ci.yml b/.github/workflows/verible-ci.yml index ad507d594..f256a4b95 100644 --- a/.github/workflows/verible-ci.yml +++ b/.github/workflows/verible-ci.yml @@ -456,7 +456,7 @@ jobs: - name: Pack up run: | VERSION=$(git describe --match=v*) - .github/bin/simple-install.sh verible-${VERSION}-macOS + .github/bin/simple-install.sh verible-${VERSION}-macOS/bin tar cvzf verible-${VERSION}-macOS.tar.gz verible-${VERSION}-macOS - name: 📤 Upload artifact @@ -534,7 +534,7 @@ jobs: Release: - needs: [ Check, Build, WindowsBuild, PrepareVSPlugin ] + needs: [ Check, Build, MacOsBuild, WindowsBuild, PrepareVSPlugin ] runs-on: ubuntu-20.04 name: 📦 Release if: ${{github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master')}}