-
-
Notifications
You must be signed in to change notification settings - Fork 748
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrated website deployment to GitHub Actions. (#6524)
- Loading branch information
1 parent
4c20dbb
commit fc9438b
Showing
4 changed files
with
70 additions
and
118 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,70 @@ | ||
name: Publish Website | ||
|
||
# When to trigger the workflow | ||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- .github/workflows/publish-website.yml | ||
- .docker/website/** | ||
- website/** | ||
|
||
jobs: | ||
build-and-deploy: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Docker Login | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ${{ secrets.CONTAINER_REG_URL }} | ||
username: ${{ secrets.CONTAINER_REG_USERNAME }} | ||
password: ${{ secrets.CONTAINER_REG_PASSWORD }} | ||
|
||
- run: echo ${{ secrets.CONTAINER_REG_URL }} | ||
|
||
- name: Install Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '18.x' | ||
cache: 'yarn' | ||
cache-dependency-path: 'website/yarn.lock' | ||
|
||
- name: Cache Yarn Packages | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
website/.yarn/cache | ||
website/.cache/yarn | ||
key: ${{ runner.os }}-yarn-${{ hashFiles('website/yarn.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-yarn- | ||
- name: Install Packages | ||
run: yarn --immutable --network-timeout 100000 | ||
working-directory: website | ||
|
||
- name: Build Website | ||
run: yarn build --prefix-paths | ||
working-directory: website | ||
|
||
- name: Build WebSite Container | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
file: .docker/website/dockerfile | ||
push: true | ||
tags: ${{ secrets.CONTAINER_REG_DOMAIN }}/ccc-website-${{ github.ref_name }}:${{ github.run_id }} | ||
|
||
- name: Deploy to Azure WebApp | ||
uses: azure/webapps-deploy@v2 | ||
with: | ||
app-name: ccc-p-us1-website | ||
slot-name: 'production' | ||
publish-profile: ${{ secrets.AZURE_PUBLISH_PROFILE }} | ||
images: ${{ secrets.CONTAINER_REG_DOMAIN }}/ccc-website-${{ github.ref_name }}:${{ github.run_id }} | ||
|