diff --git a/.github/workflows/on_pull_request.yml b/.github/workflows/on_pull_request.yml index fc207ff..541c37f 100644 --- a/.github/workflows/on_pull_request.yml +++ b/.github/workflows/on_pull_request.yml @@ -10,6 +10,7 @@ jobs: install-dependencies: runs-on: ubuntu-latest steps: + - run: mkdir install-artifacts - name: Install dependencies run: | wget https://boostorg.jfrog.io/artifactory/main/release/1.80.0/source/boost_1_80_0.tar.gz @@ -20,19 +21,18 @@ jobs: - name: Save artifacts uses: actions/upload-artifact@v4 with: - name: install-artifacts - path: install + path: install-artifacts build: needs: [install-dependencies] runs-on: ubuntu-latest steps: + - run: ls - uses: actions/checkout@v4 - uses: actions/download-artifact@v4 with: - name: install-artifacts - path: install + path: install-artifacts - name: Build project run: | @@ -58,8 +58,7 @@ jobs: path: build - uses: actions/download-artifact@v4 with: - name: install-artifacts - path: install + path: install-artifacts - name: Add lanch permissions for text executables run: |