From 048b9cfe0eaee0daaf9351e91b05860e86550aad Mon Sep 17 00:00:00 2001 From: Donghoon Park Date: Sun, 15 Dec 2024 04:10:07 +0000 Subject: [PATCH] added download artifact process --- .github/workflows/ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e9f6d93..1621702 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,6 +36,16 @@ jobs: runs-on: ubuntu-latest needs: Build # run after Build job steps: + - uses: actions/checkout@v3 + + - name: Download Build Directory + uses: actions/download-artifact@v3 + with: + name: build + + - name: List Build Files + run: ls -R build + - name: test run: | cd build