diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2c638c812..15c7bf5e2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -206,3 +206,4 @@ jobs: fi env: GDRIVE_BASE64: ${{ secrets.GDRIVE_BASE64 }} + GITHUB_REF_NAME: ${{ github.ref_name }} diff --git a/send_to_googledrive.py b/send_to_googledrive.py index aa074ea6a..0e2cebe5a 100644 --- a/send_to_googledrive.py +++ b/send_to_googledrive.py @@ -94,7 +94,8 @@ creds = ServiceAccountCredentials.from_json_keyfile_dict(creds_info, scope) client = gspread.authorize(creds) # Get the instance of the Spreadsheet -sheet = client.open("benchmark") +branch_name = os.getenv("GITHUB_REF_NAME") +sheet = client.open(f"benchmark-{branch_name}") # Get the first sheet of the Spreadsheet sheet_instance = sheet.get_worksheet(0)