From 42eea629eeab043976b6e2d3535270b6aaa34f37 Mon Sep 17 00:00:00 2001 From: Andreas Heinrich Date: Mon, 9 Sep 2024 17:04:10 +0200 Subject: [PATCH] use secrets input Signed-off-by: Andreas Heinrich --- .github/workflows/continuous_integration.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/continuous_integration.yml b/.github/workflows/continuous_integration.yml index 981bd89..f7ab3cc 100644 --- a/.github/workflows/continuous_integration.yml +++ b/.github/workflows/continuous_integration.yml @@ -91,10 +91,6 @@ on: description: 'The repository to deploy the coverage report to' required: true type: string - coverage_deploy_token: - description: 'The token to use to deploy the coverage report' - required: true - type: string dist_path: description: 'The path to the dist directory, relative to the github workspace' required: false @@ -167,6 +163,10 @@ on: required: false default: 'false' type: string + secrets: + coverage_deploy_token: + description: 'The token to use to deploy the coverage report' + required: true env: EVEREST_CI_VERSION: v1.3.1 @@ -306,7 +306,7 @@ jobs: target_repo: ${{ inputs.coverage_deploy_target_repo }} target_logs_name: coverage-report logs_dir: ${{ inputs.coverage_report_path }} - github_token: ${{ inputs.coverage_deploy_token }} + github_token: ${{ secrets.coverage_deploy_token }} - name: Create dist id: create_dist if: ${{ inputs.run_install == 'true' }}