Browse Source

Don't use --ci because that will skip saving artifacts

Kevin Leung 3 years ago
parent
commit
5c1a26089a
1 changed files with 5 additions and 5 deletions
  1. 5 5
      .github/workflows/main.yml

+ 5 - 5
.github/workflows/main.yml

@@ -253,7 +253,7 @@ jobs:
         run: echo "ADD_REVISION=1" >> $GITHUB_ENV
 
       - name: Build
-        run: earthly --platform=linux/amd64 --ci --remote-cache=ghcr.io/${{ github.repository }}:cache --push +build --ADD_REVISION=$ADD_REVISION
+        run: earthly --platform=linux/amd64 --remote-cache=ghcr.io/${{ github.repository }}:cache --push +build --ADD_REVISION=$ADD_REVISION
       
       - name: Upload artifact
         uses: actions/[email protected]
@@ -655,11 +655,11 @@ jobs:
       
       - name: Test
         if: success() && !(matrix.SAUCE && matrix.SAUCE_ACCESS_KEY)
-        run: earthly --platform=linux/amd64 --ci --remote-cache=ghcr.io/${{ github.repository }}:cache --push +test-all
+        run: earthly --platform=linux/amd64 --remote-cache=ghcr.io/${{ github.repository }}:cache --push +test-all
       
       - name: Test (with SauceLabs)
         if: success() && matrix.SAUCE && matrix.SAUCE_ACCESS_KEY
-        run: earthly --platform=linux/amd64 --ci --remote-cache=ghcr.io/${{ github.repository }}:cache --push +test --TEST=js
+        run: earthly --platform=linux/amd64 --remote-cache=ghcr.io/${{ github.repository }}:cache --push +test --TEST=js
         env:
           SAUCE_ACCESS_KEY: matrix.SAUCE_ACCESS_KEY
       
@@ -694,11 +694,11 @@ jobs:
       
       - name: Test
         if: success() && !(matrix.SAUCE && matrix.SAUCE_ACCESS_KEY)
-        run: earthly --platform=linux/arm64 --ci --remote-cache=ghcr.io/${{ github.repository }}:cache --push +test-all
+        run: earthly --platform=linux/arm64 --remote-cache=ghcr.io/${{ github.repository }}:cache --push +test-all
       
       - name: Test (with SauceLabs)
         if: success() && matrix.SAUCE && matrix.SAUCE_ACCESS_KEY
-        run: earthly --platform=linux/arm64 --ci --remote-cache=ghcr.io/${{ github.repository }}:cache --push +test --TEST=js
+        run: earthly --platform=linux/arm64 --remote-cache=ghcr.io/${{ github.repository }}:cache --push +test --TEST=js
         env:
           SAUCE_ACCESS_KEY: matrix.SAUCE_ACCESS_KEY