Skip to content

Commit

Permalink
fix typo; improve error handling in github action
Browse files Browse the repository at this point in the history
  • Loading branch information
flexponsive committed Feb 16, 2023
1 parent 72ab84c commit dd1a260
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/cookiecutter-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- { cookiecutter: "tap-template", replay: "tap-rest-custom.json", python-version: "3.9", os: "ubuntu-latest" }
- { cookiecutter: "tap-template", replay: "tap-rest-jwt.json", python-version: "3.9", os: "ubuntu-latest" }
- { cookiecutter: "tap-template", replay: "tap-rest-oauth2.json", python-version: "3.9", os: "ubuntu-latest" }
- { cookiecutter: "tap-template", replay: "target-per_record.json", python-version: "3.9", os: "ubuntu-latest" }
- { cookiecutter: "target-template", replay: "target-per_record.json", python-version: "3.9", os: "ubuntu-latest" }

steps:
- name: Check out the repository
Expand Down Expand Up @@ -63,7 +63,8 @@ jobs:
CC_TEMPLATE: cookiecutter/${{ matrix.cookiecutter }}
REPLAY_FILE: e2e-tests/cookiecutters/${{ matrix.replay }}
run: |
bash e2e-tests/cookiecutters/test_cookiecutter.sh $CC_TEMPLATE $REPLAY_FILE 0
chmod +x ./e2e-tests/cookiecutters/test_cookiecutter.sh
./e2e-tests/cookiecutters/test_cookiecutter.sh $CC_TEMPLATE $REPLAY_FILE 0
- uses: actions/upload-artifact@v3
with:
Expand Down
Empty file modified e2e-tests/cookiecutters/test_cookiecutter.sh
100644 → 100755
Empty file.

0 comments on commit dd1a260

Please sign in to comment.