-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
101 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,67 +1,59 @@ | ||
name: Vercel Deploy Preview | ||
|
||
on: | ||
workflow_dispatch: | ||
repository_dispatch: | ||
types: [deploy-preview] | ||
workflow_dispatch: | ||
repository_dispatch: | ||
types: [deploy-preview] | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
environment: preview | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
repository: LR-Tech-Blog/content | ||
path: content | ||
- uses: actions/checkout@v4 | ||
with: | ||
repository: LR-Tech-Blog/blog | ||
path: blog | ||
- name: Remove dumy post images | ||
run: rm -rf ./blog/public/images/posts | ||
- name: Remove dumy content | ||
run: rm -rf ./blog/src/data | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
environment: preview | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
repository: LR-Tech-Blog/content | ||
path: content | ||
- uses: actions/checkout@v4 | ||
with: | ||
repository: LR-Tech-Blog/blog | ||
path: blog | ||
- name: Remove dumy post images | ||
run: rm -rf ./blog/public/images/posts | ||
- name: Remove dumy content | ||
run: rm -rf ./blog/src/data | ||
|
||
- name: Copy content | ||
run: | ||
| | ||
mkdir ./blog/src/data | ||
mv ./content/data/* ./blog/src/data/ | ||
- name: Copy post images | ||
run: | ||
| | ||
mkdir ./blog/public/images/posts | ||
mv ./content/public/images/posts/* ./blog/public/images/posts/ | ||
|
||
- name: Install Vercel CLI | ||
run: npm install -g vercel | ||
- name: Install dependencies | ||
run: | ||
| | ||
cd ./blog | ||
npm install | ||
- name: Astro build | ||
run: | ||
| | ||
cd ./blog | ||
npx astro sync | ||
npx astro build | ||
- name: Pull env information | ||
run: | ||
| | ||
cd ./blog | ||
vercel pull --yes --environment ${{ vars.VERCEL_ENVIRONMENT }} --token ${{ secrets.VERCEL_TOKEN }} | ||
- name: Vercel build | ||
run: | ||
| | ||
cd ./blog | ||
vercel build --yes --token=${{ secrets.VERCEL_TOKEN }} | ||
- name: Vercel Deploy | ||
run: | ||
| | ||
cd ./blog | ||
vercel deploy --prebuilt --yes --token=${{ secrets.VERCEL_TOKEN }} > ./url.txt | ||
- name: Get Deploy URL | ||
run: echo "::notice name=URL::$(cat ./blog/url.txt)" | ||
- name: Copy content | ||
run: | | ||
mkdir ./blog/src/data | ||
mv ./content/data/* ./blog/src/data/ | ||
- name: Copy post images | ||
run: | | ||
mkdir ./blog/public/images/posts | ||
mv ./content/public/images/posts/* ./blog/public/images/posts/ | ||
- name: Install Vercel CLI | ||
run: npm install -g vercel | ||
- name: Install dependencies | ||
run: | | ||
cd ./blog | ||
npm install | ||
- name: Astro build | ||
run: | | ||
cd ./blog | ||
npx astro sync | ||
npx astro build | ||
- name: Pull env information | ||
run: | | ||
cd ./blog | ||
vercel pull --yes --environment ${{ vars.VERCEL_ENVIRONMENT }} --token ${{ secrets.VERCEL_TOKEN }} | ||
- name: Vercel build | ||
run: | | ||
cd ./blog | ||
vercel build --yes --token=${{ secrets.VERCEL_TOKEN }} | ||
- name: Vercel Deploy | ||
run: | | ||
cd ./blog | ||
vercel deploy --prebuilt --yes --token=${{ secrets.VERCEL_TOKEN }} > ./url.txt | ||
- name: Get Deploy URL | ||
run: echo "::notice name=URL::$(cat ./blog/url.txt)" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters