Skip to content

Commit

Permalink
remove comments, add workflow dispatch for release. move vercel.json …
Browse files Browse the repository at this point in the history
…to configured root
  • Loading branch information
L03TJ3 committed Aug 7, 2023
1 parent 82f28a9 commit 4dbad71
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
# .github/workflows/deploy.yml
name: deploy-dev
name: Deploy Web - Production
on:
push:
branches:
- production
# - production/next
workflow_dispatch:
inputs:
release:
description: 'release type'
required: true
default: 'production'
targetbranch:
description: 'target deployment branch'
required: true
default: 'production'

env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
branches:
- master
# develop/staging
pull_request:
branches:
- master
Expand Down
2 changes: 1 addition & 1 deletion packages/app/__tests__/App-test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import 'react-native';
import React from 'react';
import App from '../App';
import App from '../src/App';

// Note: test renderer must be required after react-native.
import renderer from 'react-test-renderer';
Expand Down
File renamed without changes.

0 comments on commit 4dbad71

Please sign in to comment.