From c4090f7c932319dc34bb28a217fd6a34612562f8 Mon Sep 17 00:00:00 2001 From: Andrew Grimberg Date: Fri, 14 Apr 2023 09:27:41 -0700 Subject: [PATCH] Fix: Correct bad var def in release workflow Issue: RELENG-4563 Change-Id: Ifcd528f511410ed1b3363890e58e37903de3b32f Signed-off-by: Andrew Grimberg --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a51a452..890e12f 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -22,7 +22,7 @@ jobs: uses: dawidd6/action-send-mail@v3 with: server_address: ${{ vars.MAIL_SERVER }} - server_port: ${{ variables.MAIL_SERVER_PORT }} + server_port: ${{ vars.MAIL_SERVER_PORT }} secure: true username: ${{ secrets.MAIL_USER }} password: ${{ secrets.MAIL_PASSWORD }} -- 2.16.6