From c35bc97279fe5fcd19f30c278813301dde760625 Mon Sep 17 00:00:00 2001 From: Vincent Boutour Date: Mon, 15 Feb 2021 22:48:33 +0100 Subject: [PATCH] fix: Fixing openssl format on linux --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ceda146b..dcc39738 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,7 +7,7 @@ on: branches: - main env: - SCRIPTS_NO_INTERACTIVE: "true" + SCRIPTS_NO_INTERACTIVE: 'true' defaults: run: shell: bash @@ -20,7 +20,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-go@v2 with: - go-version: "^1.15" + go-version: '^1.15' - run: | make git --no-pager diff -- ':(exclude)go.sum' && git diff --quiet -- ':(exclude)go.sum' @@ -40,7 +40,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-go@v2 with: - go-version: "^1.15" + go-version: '^1.15' - name: Build run: | curl --disable --silent --show-error --location --max-time 30 "https://raw.githubusercontent.com/ViBiOh/scripts/main/bootstrap" | bash -s "release" @@ -66,7 +66,7 @@ jobs: FLUX_TOKEN: ${{ secrets.FLUX_TOKEN }} FLUX_WEBHOOK_URL: ${{ secrets.FLUX_WEBHOOK_URL }} run: | - curl --disable --silent --show-error --location --max-time 30 --header "X-Signature: sha1=$(printf "{}" | openssl dgst -sha1 -hmac "${FLUX_TOKEN}")" --data "{}" "${FLUX_WEBHOOK_URL}" + curl --disable --silent --show-error --location --max-time 30 --header "X-Signature: sha1=$(printf "{}" | openssl dgst -sha1 -r -hmac "${FLUX_TOKEN}")" --data "{}" "${FLUX_WEBHOOK_URL}" - name: GoReport run: | curl --disable --silent --show-error --location --max-time 30 -X POST https://goreportcard.com/checks?repo=github.com/${GITHUB_REPOSITORY}