Skip to content

Commit bf54a4f

Browse files
authored
Merge pull request #80 from benWu26/story2
test
2 parents ca51d72 + 2052ade commit bf54a4f

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/frontend-docker.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,12 @@ jobs:
2222
- name: Set up Docker Buildx
2323
uses: docker/setup-buildx-action@v3
2424

25-
# Authenticate to Google Cloud
25+
# Authenticate to Google Cloud with service account key
2626
- id: 'auth'
2727
name: 'Authenticate to Google Cloud'
2828
uses: 'google-github-actions/auth@v2'
2929
with:
30-
workload_identity_provider: '${{ secrets.GCP_WORKLOAD_IDENTITY_PROVIDER }}'
31-
service_account: '${{ secrets.GCP_SERVICE_ACCOUNT }}'
30+
credentials_json: '${{ secrets.GCP_SA_KEY }}'
3231

3332
# Configure docker to use gcloud as a credential helper
3433
- name: Set up Cloud SDK

leetstudy_backend/cmd/models/user.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,4 @@ type User struct {
6565
PremiumExpiresAt *time.Time `json:"premium_expires_at,omitempty" db:"premium_expires_at"`
6666
StripeCustomerId *string `json:"stripe_customer_id,omitempty" db:"stripe_customer_id"`
6767
}
68+
//test

website/src/components/home-main.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,9 @@ const HomeMain = ({
7575
</h2>
7676
<p className="text-muted-foreground text-lg mb-8">
7777
Join thousands of developers who are already using LeetStudy to prepare for their technical interviews.
78-
</p>
78+
</p>
7979
<a href="/signup">
80+
8081
<Button size="lg">
8182
Start Your Journey
8283
<ArrowRight className="ml-2 h-5 w-5" />

0 commit comments

Comments
 (0)