From b651f383ffd6d78fd4495a2fda6bbaae8156295c Mon Sep 17 00:00:00 2001 From: Lorne Stalker Date: Sat, 9 Sep 2023 11:39:11 +0100 Subject: [PATCH] timing might be off? trying ls first --- .github/workflows/server-ci.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/server-ci.yaml b/.github/workflows/server-ci.yaml index 2222594..6f6e612 100644 --- a/.github/workflows/server-ci.yaml +++ b/.github/workflows/server-ci.yaml @@ -37,11 +37,12 @@ jobs: - name: Build server run: go build -o digits ./... + - name: list + run: ls -la + - name: Upload binary artifact uses: actions/upload-artifact@v3 with: name: digits - path: digits + path: ./digits - - name: list - run: ls -la