From e294ad092116578b9f4dd4200320b958ae1379f6 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Thu, 25 Jun 2020 13:54:07 +0200 Subject: [PATCH] Don't use verbose mode to avoid printing secrets. --- .github/workflows/fire-jenkins.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/fire-jenkins.yml b/.github/workflows/fire-jenkins.yml index 62491354a2..f219489bee 100644 --- a/.github/workflows/fire-jenkins.yml +++ b/.github/workflows/fire-jenkins.yml @@ -19,7 +19,7 @@ jobs: steps: # Runs a single command using the runners shell - name: Fire Jenkins - run: curl -v -X POST -d "" -u "$JENKINS_AUTH" "https://builds.spacestation14.io/jenkins/job/SS14%20Content/build?token=$JENKINS_SS14_CONTENT_BUILD_TOKEN&cause=GitHub+actions+push" + run: curl -X POST -d "" -u "$JENKINS_AUTH" "https://builds.spacestation14.io/jenkins/job/SS14%20Content/build?token=$JENKINS_SS14_CONTENT_BUILD_TOKEN&cause=GitHub+actions+push" env: JENKINS_AUTH: ${{ secrets.JENKINS_AUTH }} JENKINS_SS14_CONTENT_BUILD_TOKEN: ${{ secrets.JENKINS_SS14_CONTENT_BUILD_TOKEN }}