From 364997ea4fadbc5e0ec05d2d411ba9c0c76a542b Mon Sep 17 00:00:00 2001 From: FranCalveyra Date: Mon, 30 Dec 2024 12:32:26 -0300 Subject: [PATCH] fix(deploy): Fixed CD workflow step --- .github/workflows/cd.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 10ec3aa..8e5b9b3 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -12,6 +12,7 @@ jobs: permissions: contents: read packages: write + id-token: write steps: @@ -45,6 +46,5 @@ jobs: - name: Deploy to GitHub Pages uses: actions/deploy-pages@v4 with: - github-token: ${{ secrets.DEPLOY_TOKEN }} - pages-branch: main - pages-path: / \ No newline at end of file + token: ${{ secrets.GITHUB_TOKEN }} + artifact_name: ${{ env.BINARY_NAME }} \ No newline at end of file