diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-31 16:25:18 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-31 16:25:18 +0100 |
commit | 09d0bc896314d05cdd746ea21b3d8946f18d633a (patch) | |
tree | 7a8f6db70079acbfe840a7e147a61eeeb1650418 /.github/workflows | |
parent | docker: fix image tags (diff) | |
download | wg-api-web-09d0bc896314d05cdd746ea21b3d8946f18d633a.tar.gz wg-api-web-09d0bc896314d05cdd746ea21b3d8946f18d633a.zip |
workflows/ci: respect .dockerignore
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index de24cb1..35330a2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,6 +59,9 @@ jobs: - name: Build and publish uses: docker/build-push-action@v3 with: + # Without context, .dockerignore isn't respected? + # https://stackoverflow.com/a/74552407/514684 + context: . labels: '${{ steps.meta.outputs.labels }}' platforms: '${{ steps.platforms.outputs.platforms }}' push: true |