Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: 배포 테스트 #50

Merged
merged 2 commits into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 0 additions & 30 deletions .github/workflows/deploy-dev.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/deploy-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
destination-github-username: 'sambad-adventure'
destination-repository-name: ${{needs.variable.outputs.DESTINATION_REPOSITORY}}
user-email: ${{secrets.EMAIL}}
commit-message: 'chore: deploy'
commit-message: 'chore: ${{inputs.user_name}} deploy ${{inputs.stage}}'
target-branch: ${{inputs.stage == 'prodction' && 'main' || 'main' }}
- name: get deploy information
id: deploy-information
Expand Down
30 changes: 0 additions & 30 deletions .github/workflows/deploy.yml

This file was deleted.

5 changes: 4 additions & 1 deletion apps/web/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
import { FirstDomainExampleScreen } from '@sambad/web-domains/first-domain';
import { useEffect } from 'react';

import styles from './page.module.css';

export default function Home() {
console.log('test');
useEffect(() => {
console.log('test-main');
}, []);

return (
<main className={styles.main}>
Expand Down
Loading