From e7b306d02ee43621ffb33fbd37daebfcd4dd71a0 Mon Sep 17 00:00:00 2001 From: andrew Date: Thu, 18 Apr 2024 17:43:42 +0900 Subject: [PATCH 1/2] chore(ci): fix turbo token to uuid --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 51cd6c9f82..2bd7525462 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest env: TURBO_API: http://127.0.0.1:9080 - TURBO_TOKEN: ${{ secrets.TURBO_SERVER_TOKEN }} + TURBO_TOKEN: 61613e87-4749-493b-a569-9a5e15e168cd TURBO_TEAM: bezier-react steps: - name: Checkout @@ -24,7 +24,7 @@ jobs: uses: felixmosh/turborepo-gh-artifacts@v2 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - server-token: ${{ secrets.TURBO_SERVER_TOKEN }} + server-token: 61613e87-4749-493b-a569-9a5e15e168cd - name: Build run: yarn build From 3c349e8205ee7dde57c162949ef508a46e9fcf10 Mon Sep 17 00:00:00 2001 From: andrew Date: Mon, 22 Apr 2024 09:33:12 +0900 Subject: [PATCH 2/2] chore(ci): use environment variable --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2bd7525462..d9e09d94f0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: uses: felixmosh/turborepo-gh-artifacts@v2 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - server-token: 61613e87-4749-493b-a569-9a5e15e168cd + server-token: ${{ env.TURBO_TOKEN }} - name: Build run: yarn build