From c497e18537724d60fc418c8e552839c448ef615d Mon Sep 17 00:00:00 2001 From: David Bauer Date: Fri, 8 May 2020 16:59:55 +0200 Subject: [PATCH] github: fix link to dawn source This was previously a relative path which obviously didn't work at the target location. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8833fda..58b5ef6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,7 +22,7 @@ jobs: - name: Update package feed run: ./sdk/scripts/feeds update -a && ./sdk/scripts/feeds install -a - name: Link DAWN source - run: ln -s dawn/.git sdk/feeds/packages/net/dawn/git-src + run: ln -s $GITHUB_WORKSPACE/dawn/.git sdk/feeds/packages/net/dawn/git-src - name: Compile DAWN run: make -C sdk package/dawn/{clean,compile} V=s - name: Archive build output