From 0416e9a21b7efb2451c9ba18c3ff4fcbe34d66a7 Mon Sep 17 00:00:00 2001 From: David Eisinger Date: Thu, 1 Feb 2024 23:55:27 -0500 Subject: [PATCH] log dither output --- .github/workflows/deploy.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 13679e6..2c80a50 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -33,7 +33,7 @@ jobs: env: ROOT: ${{ github.workspace }}/content KEY: ${{ github.workspace }}/secret.key - run: cd bin/dither && bundle exec ruby dither.rb & + run: cd bin/dither && bundle exec ruby dither.rb >> dither.log 2>&1 & - name: Test build env: @@ -59,3 +59,9 @@ jobs: env: SERVER_IP: ${{ secrets.SERVER_IP }} run: bin/deploy + + - name: Upload dither.log + uses: actions/upload-artifact@v3 + with: + name: dither.log + path: bin/dither/dither.log