-
Notifications
You must be signed in to change notification settings - Fork 355
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4623 from coralproject/develop
v9.0.7
- Loading branch information
Showing
8 changed files
with
28 additions
and
12 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 |
---|---|---|
|
@@ -18,7 +18,7 @@ jobs: | |
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
uses: docker/setup-buildx-action@v3 | ||
- uses: webfactory/[email protected] | ||
with: | ||
ssh-private-key: ${{ secrets.REPO_PATCHED_DEPLOY_KEY }} | ||
|
@@ -85,7 +85,7 @@ jobs: | |
run: cd client && ./node_modules/.bin/bundlesize --enable-github-checks | ||
# Build tag push the image after a merge to develop | ||
- name: Build, Tag, Push | ||
uses: docker/build-push-action@v4 | ||
uses: docker/build-push-action@v5 | ||
if: github.ref == 'refs/heads/develop' | ||
with: | ||
push: true | ||
|
@@ -96,7 +96,7 @@ jobs: | |
cache-to: type=registry,ref=${{ env.IMAGE_CACHE_REPOSITORY }}:cache-develop | ||
# Build tag push the release candidate image when the branch name begins with release- | ||
- name: Build, Tag, Push RC | ||
uses: docker/build-push-action@v4 | ||
uses: docker/build-push-action@v5 | ||
if: startsWith( github.ref, 'refs/heads/release-') | ||
with: | ||
push: true | ||
|
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 |
---|---|---|
|
@@ -22,7 +22,7 @@ jobs: | |
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
uses: docker/setup-buildx-action@v3 | ||
- uses: webfactory/[email protected] | ||
with: | ||
ssh-private-key: ${{ secrets.REPO_PATCHED_DEPLOY_KEY }} | ||
|
@@ -98,7 +98,7 @@ jobs: | |
echo "MINOR_TAG=${MAJOR}.${MINOR}" >> $GITHUB_ENV | ||
echo "PATCH_TAG=${MAJOR}.${MINOR}.${PATCH}" >> $GITHUB_ENV | ||
- name: Build, Tag, Push Major Tag | ||
uses: docker/build-push-action@v4 | ||
uses: docker/build-push-action@v5 | ||
with: | ||
push: true | ||
tags: ${{ env.IMAGE_REPOSITORY }}:${{ env.MAJOR_TAG }} | ||
|
@@ -107,7 +107,7 @@ jobs: | |
cache-from: type=registry,ref=${{ env.IMAGE_CACHE_REPOSITORY }}:cache-major | ||
cache-to: type=registry,ref=${{ env.IMAGE_CACHE_REPOSITORY }}:cache-major | ||
- name: Build, Tag, Push Minor Tag | ||
uses: docker/build-push-action@v4 | ||
uses: docker/build-push-action@v5 | ||
with: | ||
push: true | ||
tags: ${{ env.IMAGE_REPOSITORY }}:${{ env.MINOR_TAG }} | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ FROM node:18-alpine | |
ENV NODE_OPTIONS="--max-old-space-size=8192 --openssl-legacy-provider --no-experimental-fetch" | ||
|
||
# Install build dependancies. | ||
RUN apk --no-cache --update add g++ make git python3 \ | ||
RUN apk --no-cache --update add g++ make git python3 py3-pip py3-setuptools \ | ||
&& rm -rf /var/cache/apk/* | ||
|
||
RUN npm install -g [email protected] | ||
|
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
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