diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 9f53b4b..b34aa37 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -40,7 +40,7 @@ jobs: if: needs.check-tag-exists.outputs.proceed == 'true' runs-on: ubuntu-latest container: - image: refringe/spt-build-server:0.0.2 + image: refringe/spt-build-server:0.0.3 steps: - name: Clone run: | @@ -117,7 +117,7 @@ jobs: BUILD_TYPE="${{ steps.build-type.outputs.build_type }}" echo "Running build for $BUILD_TYPE" npm run build:$BUILD_TYPE - echo "\nBuilt!\n" + printf "\nBuilt!\n\n" tree -C /workspace/refringe/Build/server/project/build shell: bash @@ -201,7 +201,7 @@ jobs: run: | cd /workspace/refringe/Build/modules/project dotnet build - echo "\nBuilt!\n" + printf "\nBuilt!\n\n" tree /workspace/refringe/Build/modules/project/Build shell: bash diff --git a/Dockerfile.node b/Dockerfile.node index 46f386e..7fc5953 100644 --- a/Dockerfile.node +++ b/Dockerfile.node @@ -7,6 +7,6 @@ FROM node:20.10.0 # - zstd (caching action dependancy) # - tree (pretty print build directory structure) RUN apt-get update && \ - apt-get install -y git git-lfs zstd && \ + apt-get install -y git git-lfs zstd tree && \ apt-get clean && \ rm -rf /var/lib/apt/lists/*