Skip to content

Commit

Permalink
CI: fix failed deployments (#32)
Browse files Browse the repository at this point in the history
Some PRs are having trouble landing. They don't seem flaky since the
failures are repeatable, however they are not changing utils code.

E.g.: 
* #17

This branch will find out why and fix the issue.
  • Loading branch information
simonrw authored Apr 29, 2024
1 parent 86a066f commit 3376dfa
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/npm-publish-github-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ jobs:
LOCALSTACK_API_KEY: ${{ secrets.LOCALSTACK_API_KEY }}
APPSYNC_JS_LIBS_VERSION: ${{ github.sha }}
DEBUG: "1"
DISABLE_EVENTS: "1"
- uses: actions/setup-node@v4
- name: Install cdk project
working-directory: cdk
Expand Down Expand Up @@ -85,3 +86,7 @@ jobs:
path: |
logs.txt.gz
retention-days: 7
- name: Print the LocalStack logs
if: success() || failure()
run: |
gunzip -c logs.txt.gz

0 comments on commit 3376dfa

Please sign in to comment.