-
Notifications
You must be signed in to change notification settings - Fork 5
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
1 parent
f09afad
commit 2772e4f
Showing
3 changed files
with
103 additions
and
66 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
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
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 |
---|---|---|
@@ -0,0 +1,102 @@ | ||
name: Feat PR Deploy | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
types: [submitted, edited] | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- run: sudo apt-get update | ||
- run: sudo apt-get install -y libkrb5-dev | ||
|
||
- name: Use Node.js 20.x | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20 | ||
cache: npm | ||
|
||
- name: Install node_modules | ||
run: npm install | ||
|
||
- name: Lint | ||
run: npm run lint | ||
|
||
- name: Test | ||
run: npm run test | ||
|
||
build: | ||
needs: test | ||
runs-on: wgd-dev | ||
|
||
steps: | ||
- name: Extract branch name | ||
shell: bash | ||
run: echo "::set-env name=BRANCH_NAME::$(echo ${GITHUB_REF#refs/heads/} | sed 's/\//_/g')" | ||
- name: Extract PR number | ||
shell: bash | ||
run: echo "::set-env name=PR_NUMBER::$(echo $GITHUB_REF | awk 'BEGIN { FS = "/" } ; { print $3 }')" | ||
- name: Test | ||
run: echo "${PR_NUMBER}" | ||
|
||
- uses: actions/checkout@v3 | ||
|
||
- name: Use Node.js 20.x | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20 | ||
cache: npm | ||
|
||
- name: Build action runner | ||
run: docker build -t "wgd-action-runner:pr-{PR_NUMBER}" --build-arg "GIT_SHA=${GITHUB_SHA}" apps/wgd-action-runner | ||
|
||
- name: Build hugo docs | ||
run: | | ||
docker run \ | ||
-v "${GITHUB_WORKSPACE}/hugo:/site" \ | ||
-v "${GITHUB_WORKSPACE}/website:/website" \ | ||
-v "/var/www/pr-{PR_NUMBER}.wikigdrive.com:/dist/hugo" \ | ||
--env CONFIG_TOML="/site/config/_default/config.toml" --env BASE_URL="https://pr-{PR_NUMBER}.wikigdrive.com" \ | ||
wgd-action-runner:pr-{PR_NUMBER} /steps/step_render_hugo | ||
- name: Copy index for vite | ||
run: mkdir -p ${GITHUB_WORKSPACE}/dist/hugo && cp -rf /var/www/pr-{PR_NUMBER}.wikigdrive.com/* ${GITHUB_WORKSPACE}/dist/hugo | ||
|
||
- uses: whoan/docker-build-with-cache-action@v5 | ||
with: | ||
image_name: "wikigdrive-feature" | ||
image_tag: "${{ github.sha }}" | ||
push_image_and_stages: false | ||
build_extra_args: "{'--build-arg': 'GIT_SHA=${{ github.sha }}'}" | ||
|
||
- name: Stop and remove | ||
run: docker stop "pr-{PR_NUMBER}" ; docker rm "pr-{PR_NUMBER}" | ||
continue-on-error: true | ||
|
||
- name: "Create empty volume" | ||
run: docker volume rm -f "pr-{PR_NUMBER}" ; docker volume create "pr-{PR_NUMBER}" | ||
|
||
- name: Start | ||
run: | | ||
docker run -d --name "pr-{PR_NUMBER}" \ | ||
--restart unless-stopped \ | ||
--network nginx \ | ||
-v "pr-{PR_NUMBER}":/data \ | ||
-v /home/wikigdrive/service_account.json:/service_account.json \ | ||
-v /home/wikigdrive/env.develop:/usr/src/app/.env \ | ||
-v /var/run/docker.sock:/var/run/docker.sock \ | ||
-v "/var/www/pr-{PR_NUMBER}.wikigdrive.com:/usr/src/app/dist/hugo" \ | ||
-e "GIT_SHA=${GITHUB_SHA}" \ | ||
-e "ZIPKIN_URL=https://pr-{PR_NUMBER}.wikigdrive.com/zipkin" \ | ||
-e "ZIPKIN_SERVICE=pr-{PR_NUMBER}" \ | ||
--link=zipkin:zipkin \ | ||
"wikigdrive-feature:${GITHUB_SHA}" wikigdrive \ | ||
--service_account /service_account.json \ | ||
--share_email mie-docs-wikigdrive@wikigdrive.iam.gserviceaccount.com \ | ||
--workdir /data \ | ||
server 8080 |