/.github/workflows: fix bracket typo, remove commentted out code

This commit is contained in:
Dustin Brown
2021-02-19 17:06:47 -08:00
parent d757ce0a0c
commit 5b6810f2eb
2 changed files with 1 additions and 25 deletions

View File

@@ -26,7 +26,7 @@ jobs:
id: get-addresses
run: |
addresses="$TEAM"
if [ ! -z "$RECIPIENT"]; then
if [ ! -z "$RECIPIENT" ]; then
addresses="'[\"$RECIPIENT\"]'"
fi
echo "::set-output name=addresses::$addresses"

View File

@@ -66,27 +66,3 @@ jobs:
REPO_ACCESS_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }}
KUBECONFIG: "./kubeconfig"
TEMPLATE_SCRIPT: "./.github/scripts/sql-correctness/get-dolt-correctness-job-json.sh"
# - name: Get correctness results
# id: get-results
# run: |
# aws s3api get-object --bucket=sql-correctness-github-actions-results --key="$KEY" results.log
# env:
# KEY: ${{ steps.run-correctness.outputs.object-key }}
# - name: Send Email on Release
# if: ${{ github.event_name == 'repository_dispatch' }}
# uses: ./.github/actions/ses-email-action
# with:
# region: us-west-2
# version: ${{ needs.set-version-actor.outputs.version }}
# template: 'SqlCorrectnessReleaseTemplate'
# toAddresses: '["${{ secrets.PERF_REPORTS_EMAIL_ADDRESS }}"]'
# dataFile: ${{ format('{0}/results.log', github.workspace) }}
# - name: Send Email
# if: ${{ github.event_name == 'workflow_dispatch' }}
# uses: ./.github/actions/ses-email-action
# with:
# region: us-west-2
# version: ${{ needs.set-version-actor.outputs.version }}
# template: 'SqlCorrectnessReleaseTemplate'
# toAddresses: '["${{ github.event.inputs.email }}"]'
# dataFile: ${{ format('{0}/results.log', github.workspace) }}