Skip to content

Commit 8e2dac8

Browse files
committed
Fix github actions env names
1 parent 121b939 commit 8e2dac8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
swift-version: '5.2'
1515
- shell: bash
1616
env:
17-
MAILTRAPPASS: ${{ secrets.MAILTRAPUSER }}
17+
MAILTRAPUSER: ${{ secrets.MAILTRAPUSER }}
1818
run: |
1919
sed -i -e 's/#MAILTRAPUSER#/'"$MAILTRAPUSER"'/g' Tests/SmtpTests/SmtpTests.swift
2020
- shell: bash
@@ -24,7 +24,7 @@ jobs:
2424
sed -i -e 's/#MAILTRAPPASS#/'"$MAILTRAPPASS"'/g' Tests/SmtpTests/SmtpTests.swift
2525
- shell: bash
2626
env:
27-
GMAILPASS: ${{ secrets.GMAILUSER }}
27+
GMAILUSER: ${{ secrets.GMAILUSER }}
2828
run: |
2929
sed -i -e 's/#GMAILUSER#/'"$GMAILUSER"'/g' Tests/SmtpTests/SmtpTests.swift
3030
- shell: bash

0 commit comments

Comments
 (0)