From 37bfbfa62caeddb60822dfd2220cc16edd15961d Mon Sep 17 00:00:00 2001 From: Natalie Weizenbaum Date: Fri, 30 Aug 2024 17:01:08 -0700 Subject: [PATCH] Work around devcontainers-community/publish-feature#4 This works around a bug where tar files could be generated with two different instances of the same file, which in turn tickles a crashing bug in the container builder (https://github.com/devcontainers/cli/issues/699). This is the same solution as in devcontainers-community/features-llvm#7 and devcontainers-community/features-bazel#13. Closes #3 --- .github/workflows/publish-feature.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/publish-feature.yml b/.github/workflows/publish-feature.yml index c4e0164..4808523 100644 --- a/.github/workflows/publish-feature.yml +++ b/.github/workflows/publish-feature.yml @@ -20,3 +20,10 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - uses: devcontainers-community/publish-feature@v1 + with: + files: | + install.sh + README.md + devcontainer-feature.json + LICENSE + test.sh