File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -213,10 +213,10 @@ jobs:
213213 - name : Copy version file
214214 run : |
215215 mkdir -p .repo/dist
216- cp dist/version.txt .repo/
216+ cp ./ dist/version.txt .repo/
217217 - name : Create dotnet artifact
218218 run : |
219- VERSION=$(cat dist/version.txt)
219+ VERSION=$(cat ./ dist/version.txt)
220220 echo "Building package with version: $VERSION"
221221 cd .repo
222222 npx projen compile
@@ -226,16 +226,16 @@ jobs:
226226 echo "Contents of .repo/dist/dotnet:"
227227 ls -la .repo/dist/dotnet/
228228 - name : Collect dotnet Artifact
229- run : mv .repo/dist/dotnet dist/dotnet
229+ run : mv .repo/dist/dotnet ./ dist/dotnet
230230 - name : Debug final dist/dotnet contents
231231 run : |
232232 echo "Contents of dist/dotnet:"
233- ls -la dist/dotnet/
233+ ls -la ./ dist/dotnet/
234234 - name : Extract Version
235235 id : extract-version
236236 run : |
237- echo "VERSION=$(cat dist/version.txt)" >> "${GITHUB_OUTPUT}"
238- echo "Version from version.txt: $(cat dist/version.txt)"
237+ echo "VERSION=$(cat ./ dist/version.txt)" >> "${GITHUB_OUTPUT}"
238+ echo "Version from version.txt: $(cat ./ dist/version.txt)"
239239 # - name: Log in to MongoDB Docker registry
240240 # uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567
241241 # with:
You can’t perform that action at this time.
0 commit comments