Skip to content

Commit

Permalink
Merge pull request #251 from SCBJ-7/feature/#249-ghAction
Browse files Browse the repository at this point in the history
[#249] ghAction 환경변수 재설정
  • Loading branch information
Bumang-Cyber authored Jan 26, 2024
2 parents 2169a30 + 840d03c commit 17062b1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/firebase-hosting-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
build_and_deploy:
runs-on: ubuntu-latest
env:
VITE_BASE_URL: "${{secrets.VITE_APIKEY}}"
VITE_APIKEY: "${{secrets.VITE_AUTH_DOMAIN}}"
VITE_APIKEY: "${{secrets.VITE_APIKEY}}"
VITE_AUTH_DOMAIN: "${{secrets.VITE_AUTH_DOMAIN}}"
VITE_PROJECT_ID: "${{secrets.VITE_PROJECT_ID}}"
VITE_STORAGE_BUCKET: "${{secrets.VITE_STORAGE_BUCKET}}"
VITE_MESSAGING_SENDERID: "${{secrets.VITE_MESSAGING_SENDERID}}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/firebase-hosting-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
if: "${{ github.event.pull_request.head.repo.full_name == github.repository }}"
runs-on: ubuntu-latest
env:
VITE_BASE_URL: "${{secrets.VITE_APIKEY}}"
VITE_APIKEY: "${{secrets.VITE_AUTH_DOMAIN}}"
VITE_APIKEY: "${{secrets.VITE_APIKEY}}"
VITE_AUTH_DOMAIN: "${{secrets.VITE_AUTH_DOMAIN}}"
VITE_PROJECT_ID: "${{secrets.VITE_PROJECT_ID}}"
VITE_STORAGE_BUCKET: "${{secrets.VITE_STORAGE_BUCKET}}"
VITE_MESSAGING_SENDERID: "${{secrets.VITE_MESSAGING_SENDERID}}"
Expand Down
1 change: 0 additions & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import { useToastStore } from "./store/store";
import { AnimatePresence } from "framer-motion";

function App() {
// 토스트
const toastConfig = useToastStore((state) => state.config);

return (
Expand Down

0 comments on commit 17062b1

Please sign in to comment.