Skip to content

Commit 9289b33

Browse files
committed
Updated workflow
1 parent d589949 commit 9289b33

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.github/workflows/email.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,13 @@ jobs:
6060
SPARKPOST_FROM_NAME: ${{ secrets.SPARKPOST_FROM_NAME }}
6161
run: |
6262
# Make file runnable, might not be necessary
63-
chmod +x "${GITHUB_WORKSPACE}/bin/tests.sh"
63+
cd ${GITHUB_WORKSPACE}
64+
chmod +x "./bin/tests.sh"
6465
# Run tests
6566
# Ignore Postal, no server active.
66-
"${GITHUB_WORKSPACE}/bin/tests.sh mailgun"
67-
"${GITHUB_WORKSPACE}/bin/tests.sh postmark"
68-
"${GITHUB_WORKSPACE}/bin/tests.sh sendgrid"
69-
"${GITHUB_WORKSPACE}/bin/tests.sh smtp"
70-
"${GITHUB_WORKSPACE}/bin/tests.sh sparkpost"
67+
"./bin/tests.sh mailgun"
68+
"./bin/tests.sh postmark"
69+
"./bin/tests.sh sendgrid"
70+
"./bin/tests.sh smtp"
71+
"./bin/tests.sh sparkpost"
7172

bin/tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/local/bin/bash
1+
#!/usr/bin/bash
22

33
# Shell script for executing tests based on input.
44
# Usage:

0 commit comments

Comments
 (0)