From 8a4d267624666e54f69ab40485cd161ae3254b86 Mon Sep 17 00:00:00 2001 From: Mitchell R Date: Sun, 18 Sep 2022 22:44:17 +0200 Subject: [PATCH] Fixed build for master and tags now as well. --- .github/workflows/master.yml | 3 ++- .github/workflows/tags.yml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index f405263..e3c7721 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -113,6 +113,7 @@ jobs: - uses: actions/download-artifact@v2 with: name: published-package + path: ./nodejs - name: Set up QEMU uses: docker/setup-qemu-action@master @@ -134,7 +135,7 @@ jobs: uses: docker/build-push-action@v2 with: builder: ${{ steps.buildx.outputs.name }} - context: ./nodejs + context: ./nodejs/ file: ./nodejs/Dockerfile platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64/v8,linux/ppc64le,linux/s390x push: true diff --git a/.github/workflows/tags.yml b/.github/workflows/tags.yml index 7413970..d6ca3fb 100644 --- a/.github/workflows/tags.yml +++ b/.github/workflows/tags.yml @@ -108,6 +108,7 @@ jobs: - uses: actions/download-artifact@v2 with: name: published-package + path: ./nodejs - name: Set up QEMU uses: docker/setup-qemu-action@master @@ -129,7 +130,7 @@ jobs: uses: docker/build-push-action@v2 with: builder: ${{ steps.buildx.outputs.name }} - context: ./nodejs + context: ./nodejs/ file: ./nodejs/Dockerfile platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64/v8,linux/ppc64le,linux/s390x push: true