Skip to content

Commit 951841b

Browse files
committed
Debug folder issues
1 parent a0eee1c commit 951841b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
5555
# Run InterSystems IRIS Instance
5656
docker pull $container_image
57-
docker run -d -h $instance --name $instance -v $GITHUB_WORKSPACE:/source:rw -v $GITHUB_WORKSPACE/$test_reports:/$test_reports -v $GITHUB_WORKSPACE/$artifact_dir:/$artifact_dir --init $container_image
57+
docker run -d -h $instance --name $instance -v $GITHUB_WORKSPACE:/source:rw -v $GITHUB_WORKSPACE/$test_reports:/$test_reports:rw -v $GITHUB_WORKSPACE/$artifact_dir:/$artifact_dir:rw --init $container_image
5858
echo halt > wait
5959
# Wait for instance to be ready
6060
until docker exec --interactive $instance iris session $instance < wait; do sleep 1; done
@@ -81,13 +81,14 @@ jobs:
8181
echo "do ##class(SourceControl.Git.Utils).BuildCEInstallationPackage(file)" >> package.script
8282
echo "halt" >> package.script
8383
docker exec --interactive $instance iris session $instance -B < package.script
84+
ls $GITHUB_WORKSPACE/$artifact_dir
8485
8586
- name: Attach CE Artifact
8687
uses: actions/upload-artifact@v1
8788
if: always()
8889
with:
8990
name: "PreIRISInstallationPackage"
90-
path: ${{ env.artifact_dir }}/*.xml
91+
path: ${{ env.GITHUB_WORKSPACE }}/${{ env.artifact_dir }}/*.xml
9192

9293
- name: XUnit Viewer
9394
id: xunit-viewer

0 commit comments

Comments
 (0)