Skip to content

Commit

Permalink
revertme: short-circuit mode for on-branch test
Browse files Browse the repository at this point in the history
  • Loading branch information
abe-winter committed Oct 12, 2023
1 parent d6e796b commit a36be59
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/appimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,8 @@ jobs:
appimage_deploy:
name: AppImage Deploy
needs: [appimage_test, appimage-32bit]
needs: [appimage-32bit]
# needs: [appimage_test, appimage-32bit]
runs-on: ubuntu-latest
env:
channel: ${{ github.ref_name == 'main' && 'latest' || github.ref_name }}
Expand All @@ -250,6 +251,9 @@ jobs:
destination: 'packages.viam.com/apps/viam-server/'
parent: false

- name: short-circuit
run: exit 1

- name: Publish AppImage
run: |
gsutil mv "gs://packages.viam.com/apps/viam-server/testing/appimage/${{ needs.appimage_test.outputs.date }}/${{ github.sha }}/*" "gs://packages.viam.com/apps/viam-server/"
Expand Down

0 comments on commit a36be59

Please sign in to comment.