Skip to content

Commit

Permalink
Merge pull request #10 from flutteruniv/develop
Browse files Browse the repository at this point in the history
ワークフローの更新
  • Loading branch information
kenta-wakasa committed Jun 29, 2023
2 parents 986b677 + 617ec48 commit 93404e4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/firebase-hosting-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
with:
cache: true
channel: "stable"
- run: flutter build web --web-renderer html
- run: flutter build web --web-renderer html --dart-define=FLAVOR=prod
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: "${{ secrets.GITHUB_TOKEN }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/firebase-hosting-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
with:
cache: true
channel: "stable"
- run: flutter build web --web-renderer html
- run: flutter build web --web-renderer html --dart-define=FLAVOR=prod
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: "${{ secrets.GITHUB_TOKEN }}"
Expand Down
2 changes: 1 addition & 1 deletion functions/src/createStripeCheckoutUrl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const createStripeCheckoutUrl = functions.region(`asia-northeast1`).https
const checkoutSession: Stripe.Checkout.SessionCreateParams = {
allow_promotion_codes: true,
billing_address_collection: `auto`,
success_url: `https://anaba.app`,
success_url: `https://anaba.app/anaba/${data.documentId}`,
cancel_url: `https://anaba.app`,
mode: `payment`,
line_items: [
Expand Down

0 comments on commit 93404e4

Please sign in to comment.