From 041841d948b05cdbc3ddcb2b53be6bcdb839f17a Mon Sep 17 00:00:00 2001 From: Roman Heinrich Date: Thu, 14 Oct 2021 14:32:17 +0200 Subject: [PATCH] Checkout source --- .github/workflows/build.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6fe3568..6753ee2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,13 +31,13 @@ jobs: runs-on: ubuntu-20.04 needs: download-sources steps: + - uses: actions/checkout@v2 - uses: actions/download-artifact@v2 with: name: sqlite-sources path: src - - name: Compile sources - run: compile-linux.sh + run: bin/compile-linux.sh - name: Upload binaries to release uses: svenstaro/upload-release-action@v2 with: @@ -51,11 +51,11 @@ jobs: runs-on: windows-2019 needs: download-sources steps: + - uses: actions/checkout@v2 - uses: actions/download-artifact@v2 with: name: sqlite-sources path: src - - name: Compile sources shell: bash run: bin/compile-windows.sh @@ -72,14 +72,13 @@ jobs: runs-on: macos-10.15 needs: download-sources steps: + - uses: actions/checkout@v2 - uses: actions/download-artifact@v2 with: name: sqlite-sources path: src - - name: Compile sources run: bin/compile-mac.sh - - name: Upload binaries to release uses: svenstaro/upload-release-action@v2 with: