Skip to content

Commit

Permalink
Merge pull request #91 from ASAP-Lettering/develop
Browse files Browse the repository at this point in the history
[Release] ver 1.0.0
  • Loading branch information
yyypearl authored Nov 1, 2024
2 parents 3114c92 + b32d5ab commit 88d9685
Show file tree
Hide file tree
Showing 235 changed files with 22,186 additions and 116 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Git push into another repo to deploy to vercel

on:
push:
branches: ["develop"]

jobs:
build:
runs-on: ubuntu-latest
container: pandoc/latex
steps:
- uses: actions/checkout@v2
- name: Install mustache (to update the date)
run: apk add ruby && gem install mustache
- name: creates output
run: sh ./build.sh
- name: Pushes to another repository
id: push_directory
uses: cpina/github-action-push-to-another-repository@main
env:
API_TOKEN_GITHUB: ${{ secrets.AUTO_TOKEN }}
with:
source-directory: "output"
destination-github-username: yyypearl
destination-repository-name: Lettering-Front
user-email: ${{ secrets.OFFICIAL_ACCOUNT_EMAIL }}
commit-message: ${{ github.event.commits[0].message }}
target-branch: develop
- name: Test get variable exported by push-to-another-repository
run: echo $DESTINATION_CLONED_DIRECTORY
58 changes: 58 additions & 0 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: Preview

on:
pull_request:
branches: ["main", "develop"]

jobs:
vercel-preview:
runs-on: ubuntu-latest

permissions:
contents: read
pages: write
deployments: write
id-token: write
issues: write
pull-requests: write

env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}

VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}

steps:
- uses: actions/checkout@v4

- name: Install Vercel CLI

run: npm install --global vercel@latest

- name: Get Vercel Environment Variables

run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}

- name: Build Project Artifacts

run: vercel build --token=${{ secrets.VERCEL_TOKEN }}

- name: Deploy Project Artifacts to Vercel

id: deploy

run: |
vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }} > vercel-output.txt
echo "preview_url=$(cat vercel-output.txt)" >> $GITHUB_OUTPUT
- name: Comment PR with Preview URL

uses: thollander/actions-comment-pull-request@v2

with:
message: |
## 🎉 Deploy Preview
${{ steps.deploy.outputs.preview_url }}
[여기](https://github.com/yyypearl/Lettering-Front)에서 배포 결과 확인하기
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,5 @@ yarn-error.log*
# typescript
*.tsbuildinfo
next-env.d.ts

.env
5 changes: 5 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/sh
cd ../
mkdir output
cp -R ./Lettering-Front/* ./output
cp -R ./output ./Lettering-Front/
8 changes: 7 additions & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};
const nextConfig = {
reactStrictMode: false,
swcMinify: true,
images: {
domains: ["lettering-images.s3.amazonaws.com"],
},
};

export default nextConfig;
Loading

0 comments on commit 88d9685

Please sign in to comment.