From 9892e2b79bcb32293eb191a8dffb446a1172119b Mon Sep 17 00:00:00 2001 From: Roberto Pastor Muela <37798125+RobPasMue@users.noreply.github.com> Date: Sat, 7 Oct 2023 19:14:38 +0200 Subject: [PATCH] fix: workflow --- .github/workflows/ci_cd.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index f56be00ca5..38e38882a7 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -404,7 +404,7 @@ jobs: uses: actions/checkout@v4 with: repository: 'ansys/pyansys-geometry-binaries' - token: ${{ env.BINARIES_TOKEN }} + token: ${{ secrets.BINARIES_TOKEN }} - name: Download binaries run: | @@ -433,8 +433,8 @@ jobs: mkdir $env:VERSION mv windows-binaries.zip .\$env:VERSION\ mv linux-binaries.zip .\$env:VERSION\ - git config user.email ${{ env.BINARIES_EMAIL }} - git config user.name ${{ env.BINARIES_USERNAME }} + git config user.email ${{ secrets.BINARIES_EMAIL }} + git config user.name ${{ secrets.BINARIES_USERNAME }} git add * git commit -m "adding binaries for ${{ github.ref_name }}" git push origin main