diff options
author | 2023-01-27 21:09:12 -0800 | |
---|---|---|
committer | 2023-01-27 21:09:12 -0800 | |
commit | 9e46ca19d81e63ab73df3d6ae7821a2977ca46c8 (patch) | |
tree | c612c444f1e8b8fff9ec16a6b04e5876f46dd752 | |
parent | 866646a98e1e90ba7fc8d83a4177e1e0fbbaf766 (diff) | |
download | bun-9e46ca19d81e63ab73df3d6ae7821a2977ca46c8.tar.gz bun-9e46ca19d81e63ab73df3d6ae7821a2977ca46c8.tar.zst bun-9e46ca19d81e63ab73df3d6ae7821a2977ca46c8.zip |
Maybe fix path issue with Docker action
-rw-r--r-- | .github/workflows/bun-release.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/bun-release.yml b/.github/workflows/bun-release.yml index 534326879..f1a629e57 100644 --- a/.github/workflows/bun-release.yml +++ b/.github/workflows/bun-release.yml @@ -88,8 +88,8 @@ jobs: name: Push to Docker uses: docker/build-push-action@v3 with: - context: dockerhub - file: Dockerfile-debian + context: ./dockerhub + file: ./dockerhub/Dockerfile-debian platforms: linux/amd64,linux/arm64 builder: ${{ steps.buildx.outputs.name }} push: true |