From 092f8948610f9481baa4d4ac9f4c0be02f56303c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nat=C3=A1lia=20Granato?= <91998391+nataliagranato@users.noreply.github.com> Date: Wed, 20 Mar 2024 14:00:01 -0300 Subject: [PATCH] fix: update release.yml --- .github/workflows/release.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2b212ec..8b042e0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,22 +4,17 @@ on: push: branches: - main - paths: - - 'aws-cost-py/**' jobs: release: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 - with: - token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} + uses: actions/checkout@v3 - name: Extract commit hash id: extract_hash run: | - # Extract the hash of the latest commit HASH=$(git rev-parse HEAD) echo "Commit hash: $HASH" echo "::set-output name=hash::$HASH"