Skip to content
This repository has been archived by the owner on Sep 8, 2021. It is now read-only.

Commit

Permalink
fixed download artifacts paths
Browse files Browse the repository at this point in the history
  • Loading branch information
mammo0 committed Jul 30, 2020
1 parent bdb67a4 commit 3b57281
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
uses: actions/download-artifact@v2
with:
name: docker_image
path: ${{ env.DOCKER_IMAGE_FILE }}
path: ${{ github.workspace }}
- name: Load Docker image
run: docker load -i $DOCKER_IMAGE_FILE

Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
uses: actions/download-artifact@v2
with:
name: docker_image
path: ${{ env.DOCKER_IMAGE_FILE }}
path: ${{ github.workspace }}
- name: Load Docker image
run: docker load -i $DOCKER_IMAGE_FILE

Expand Down Expand Up @@ -113,17 +113,17 @@ jobs:
uses: actions/download-artifact@v2
with:
name: uboot_bin
path: ${{ env.UBOOT_BIN }}
path: ${{ env.ARTIFACTS_DIR }}
- name: Get OpenWRT kernel
uses: actions/download-artifact@v2
with:
name: openwrt_kernel
path: ${{ env.OPENWRT_KERNEL }}
path: ${{ env.ARTIFACTS_DIR }}
- name: Get OpenWRT rootfs
uses: actions/download-artifact@v2
with:
name: openwrt_rootfs
path: ${{ env.OPENWRT_ROOTFS }}
path: ${{ env.ARTIFACTS_DIR }}

- name: Build
run: ./3_build_images.sh
Expand Down

0 comments on commit 3b57281

Please # to comment.