Skip to content

Commit 314cce1

Browse files
committed
refactor: unused action script delete (#189)
1 parent d861169 commit 314cce1

File tree

2 files changed

+27
-31
lines changed

2 files changed

+27
-31
lines changed

.github/workflows/ci-preview.yml

Lines changed: 27 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
name: Preview CI
22

33
env:
4-
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
54
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
6-
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
75
NEXT_PUBLIC_API_BASE_URL: ${{ secrets.NEXT_PUBLIC_API_BASE_URL }}
86
NEXT_PUBLIC_SUPABASE_URL: ${{ secrets.SUPABASE_URL }}
97
NEXT_PUBLIC_SUPABASE_ANON_KEY: ${{ secrets.SUPABASE_ANON_KEY }}
@@ -60,33 +58,33 @@ jobs:
6058
currnent_time: ${{ steps.current-time.outputs.formattedTime }}
6159
needs: project-build
6260
steps:
63-
- name: Checkout
64-
uses: actions/checkout@v4
65-
66-
- name: Setup node
67-
uses: actions/setup-node@v4
68-
with:
69-
node-version: 18
70-
cache: "yarn"
71-
72-
- name: Set yarn version
73-
id: set-version
74-
run: |
75-
yarn set version 4.1.1
76-
echo "YARN_VERSION=$(yarn -v)" >> $GITHUB_OUTPUT
77-
78-
- name: Yarn cache - PnP
79-
uses: actions/cache@v4
80-
with:
81-
path: |
82-
.yarn/cache
83-
.pnp.*
84-
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}-${{ steps.set-version.outputs.YARN_VERSION }}
85-
restore-keys: |
86-
${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}-
87-
88-
- name: Install dependencies
89-
run: yarn
61+
# - name: Checkout
62+
# uses: actions/checkout@v4
63+
64+
# - name: Setup node
65+
# uses: actions/setup-node@v4
66+
# with:
67+
# node-version: 18
68+
# cache: "yarn"
69+
70+
# - name: Set yarn version
71+
# id: set-version
72+
# run: |
73+
# yarn set version 4.1.1
74+
# echo "YARN_VERSION=$(yarn -v)" >> $GITHUB_OUTPUT
75+
76+
# - name: Yarn cache - PnP
77+
# uses: actions/cache@v4
78+
# with:
79+
# path: |
80+
# .yarn/cache
81+
# .pnp.*
82+
# key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}-${{ steps.set-version.outputs.YARN_VERSION }}
83+
# restore-keys: |
84+
# ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}-
85+
86+
# - name: Install dependencies
87+
# run: yarn
9088

9189
- name: Deploy to Vercel
9290
id: deploy-vercel

.github/workflows/ci-production.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
name: Production CI
22

33
env:
4-
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
54
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
6-
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
75
NEXT_PUBLIC_API_BASE_URL: ${{ secrets.NEXT_PUBLIC_API_BASE_URL }}
86
NEXT_PUBLIC_SUPABASE_URL: ${{ secrets.SUPABASE_URL }}
97
NEXT_PUBLIC_SUPABASE_ANON_KEY: ${{ secrets.SUPABASE_ANON_KEY }}

0 commit comments

Comments
 (0)