Skip to content

Commit a400fcb

Browse files
committed
Merge branch 'rebrand'
2 parents 0989258 + 59d2a9c commit a400fcb

File tree

90 files changed

+1183
-836
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+1183
-836
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -122,15 +122,15 @@ jobs:
122122
needs: publish-docker
123123
steps:
124124
- name: Redeploy container
125-
uses: thibaultchazal/scaleway-serverless-container-deploy-action@0d290edda0c3359e51442bd8bf730eafef4e290f
125+
uses: httptoolkit/scaleway-serverless-container-deploy-action@v1
126126
with:
127127
container_id: ${{ vars.SCW_API_CONTAINER_ID }}
128128
region: ${{ vars.SCW_API_CONTAINER_REGION }}
129129
secret_key: ${{ secrets.SCW_SECRET_KEY }}
130130
registry_image_url: "registry.hub.docker.com/httptoolkit/ui:prod"
131131

132132
- name: Redeploy failover container
133-
uses: thibaultchazal/scaleway-serverless-container-deploy-action@0d290edda0c3359e51442bd8bf730eafef4e290f
133+
uses: httptoolkit/scaleway-serverless-container-deploy-action@v1
134134
with:
135135
container_id: ${{ vars.SCW_FAILOVER_API_CONTAINER_ID }}
136136
region: ${{ vars.SCW_FAILOVER_API_CONTAINER_REGION }}
@@ -139,9 +139,6 @@ jobs:
139139

140140
- name: Flush CDN cache
141141
run: |
142-
# Wait a little - the reploy commands don't wait for the container to start up
143-
sleep 30
144-
145142
# Clear CDN cache to re-request content:
146143
curl -f --request POST \
147144
--url https://api.bunny.net/pullzone/$PULL_ZONE_ID/purgeCache \

automation/webpack.common.ts

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import * as path from 'path';
22
import * as Webpack from 'webpack';
33

44
import HtmlWebpackPlugin from 'html-webpack-plugin';
5-
import GoogleFontsPlugin from '@beyonk/google-fonts-webpack-plugin';
65
import CopyPlugin from 'copy-webpack-plugin';
76
import ForkTsCheckerWebpackPlugin from 'fork-ts-checker-webpack-plugin';
87
import ForkTsCheckerNotifierWebpackPlugin from 'fork-ts-checker-notifier-webpack-plugin';
@@ -165,16 +164,6 @@ export default <Webpack.Configuration>{
165164
'wordOperations'
166165
]
167166
}),
168-
new GoogleFontsPlugin({
169-
fonts: [
170-
{ family: "Fira Mono" },
171-
{ family: "Lato" }
172-
],
173-
path: '.',
174-
formats: ['woff2'], // Supported by Chrome, FF, Edge, Safari 12+
175-
filename: 'fonts.css',
176-
apiUrl: 'https://gwfh.mranftl.com/api/fonts'
177-
}),
178167
new Webpack.ProvidePlugin({
179168
'process': 'process/browser.js',
180169
'Buffer': ['buffer', 'Buffer']

0 commit comments

Comments
 (0)