From 12244d0092235ea97c37498eda10804296e6bd58 Mon Sep 17 00:00:00 2001 From: Marin Minnerly Date: Mon, 23 Oct 2023 15:15:14 -0700 Subject: [PATCH] Prepend www and fix username --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index be74f94c..5574f38a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -166,15 +166,15 @@ jobs: - name: List tokens shell: bash - run: cmdkey /list:"LegacyGeneric:target=https://roblox.com:RobloxStudioAuth*" + run: cmdkey /list:"LegacyGeneric:target=https://www.roblox.com:RobloxStudioAuth*" - name: Set .ROBLOSECURITY token shell: bash - run: cmdkey /generic:"LegacyGeneric:target=https://roblox.com:RobloxStudioAuth.ROBLOSECURITY" /user:"" /pass:"${{ secrets.ROBLOSECURITY }}" + run: cmdkey /generic:"LegacyGeneric:target=https://www.roblox.com:RobloxStudioAuth.ROBLOSECURITY" /user:"Roblox" /pass:"${{ secrets.ROBLOSECURITY }}" - name: List tokens shell: bash - run: cmdkey /list:"LegacyGeneric:target=https://roblox.com:RobloxStudioAuth*" + run: cmdkey /list:"LegacyGeneric:target=https://www.roblox.com:RobloxStudioAuth*" - uses: actions/checkout@v3 with: