Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/development'
Browse files Browse the repository at this point in the history
  • Loading branch information
aasmal97 committed Oct 13, 2023
2 parents e65e082 + c6361c9 commit 62d6f4b
Show file tree
Hide file tree
Showing 22 changed files with 3,040 additions and 168 deletions.
20 changes: 12 additions & 8 deletions .github/workflows/deploy_to_private_repo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,17 @@ jobs:
runs-on: ubuntu-latest
environment:
name: ci-cd-env
url: https://study-cg9lo612u-aasmal97s-projects.vercel.app/
steps:
- uses: actions/checkout@v4
- name: "Build app and deploy to vercel"
uses: aasmal97/RepoSync@v1.1
with:
TARGET_REPO_URL: ${{secrets.STUDY_AI_REPO_URL}}
TARGET_REPO_BRANCH: main
TARGET_REPO_GITHUB_ACCESS_TOKEN: ${{ secrets.STUDY_AI_REPO_ACCESS_TOKEN }}
BOT_NAME: testing-bot
BOT_EMAIL: arkyasmal@gmail.com
- name: Copy repo to personal
uses: andstor/copycat-action@v3
with:
personal_token: ${{ secrets.STUDY_AI_REPO_ACCESS_TOKEN }}
src_path: /.
dst_path: /.
dst_owner: ${{ secrets.STUDY_AI_PERSONAL_REPO_OWNER }}
dst_repo_name: ${{ secrets.STUDY_AI_PERSONAL_REPO_NAME }}
src_branch: main
dst_branch: main
clean: true
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,4 @@ yarn-error.log*
# typescript
*.tsbuildinfo
next-env.d.ts
my.secrets*
40 changes: 40 additions & 0 deletions studyAi/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
node_modules/
# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# next.js
/.next/
.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# local env files
.env*.local

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts
my.secrets*
.env
env*
package-lock.json*
Loading

0 comments on commit 62d6f4b

Please sign in to comment.