Skip to content

Commit

Permalink
Merge pull request #1427 from pqrs-org/update-core
Browse files Browse the repository at this point in the history
Update core
  • Loading branch information
tekezo authored Jul 10, 2023
2 parents f9296aa + bf61143 commit dc5b59f
Show file tree
Hide file tree
Showing 18 changed files with 13 additions and 199 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
name: KE-complex_modifications CI

on: [push, pull_request]
on:
push:
branches:
- main
pull_request:

jobs:
build:
runs-on: macos-12

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
with:
fetch-depth: 1
submodules: recursive
Expand Down
12 changes: 4 additions & 8 deletions .github/workflows/update-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,12 @@ on:
jobs:
deploy:
runs-on: macos-12

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
with:
fetch-depth: 1
submodules: recursive
- name: build
run: make
- uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
- name: deploy
- name: update
env:
GH_PAGES_UPDATER_SECRET: ${{ secrets.GH_PAGES_UPDATER_SECRET }}
run: bash core/scripts/update-gh-pages.sh
10 changes: 2 additions & 8 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
{
"files.exclude": {
"**/*.min.css": true,
"**/*.min.js": true,
"**/dist/css/": true,
"**/dist/js/": true,
"public/css/": true,
"public/js/": true,
"src/vuejs/dist/": true,
"src/vuejs/public/": true
"public/static/": true,
"public/vendor/": true,
}
}
2 changes: 1 addition & 1 deletion core
Submodule core updated 37 files
+3 −0 .editorconfig
+6 −2 .github/workflows/ci.yml
+1 −1 Makefile
+2 −0 gh-pages-updater/.gitignore
+8 −0 gh-pages-updater/Makefile
+21 −0 gh-pages-updater/README.md
+52 −0 gh-pages-updater/cmd/main.go
+7 −0 gh-pages-updater/config.toml.example
+62 −0 gh-pages-updater/go.mod
+618 −0 gh-pages-updater/go.sum
+15 −0 gh-pages-updater/internal/core/config.go
+16 −0 gh-pages-updater/internal/core/helper.go
+275 −0 gh-pages-updater/internal/core/update.go
+1 −10 react/Makefile
+12 −0 react/dist/asset-manifest.json
+1 −0 react/dist/index.html
+ react/dist/static/favicon.ico
+2 −0 react/dist/static/js/496.593cab8a.chunk.js
+1 −0 react/dist/static/js/496.593cab8a.chunk.js.map
+3 −0 react/dist/static/js/main.6498a2ca.js
+130 −0 react/dist/static/js/main.6498a2ca.js.LICENSE.txt
+1 −0 react/dist/static/js/main.6498a2ca.js.map
+ react/dist/static/logo192.png
+ react/dist/static/logo512.png
+25 −0 react/dist/static/manifest.json
+6 −0 react/dist/vendor/css/bootstrap.min.css
+1 −0 react/dist/vendor/css/bootstrap.min.css.map
+1 −0 react/dist/vendor/js/iframeResizer.contentWindow.map
+9 −0 react/dist/vendor/js/iframeResizer.contentWindow.min.js
+146 −165 react/package-lock.json
+1 −1 react/package.json
+33 −13 react/src/App.tsx
+1 −1 react/src/components/CategoryBox.tsx
+30 −0 scripts/dev-server.py
+0 −26 scripts/dev-server.rb
+7 −0 scripts/make-distjson.rb
+6 −15 scripts/update-gh-pages.sh
1 change: 0 additions & 1 deletion public/index.html

This file was deleted.

Binary file removed public/static/favicon.ico
Binary file not shown.
2 changes: 0 additions & 2 deletions public/static/js/496.593cab8a.chunk.js

This file was deleted.

1 change: 0 additions & 1 deletion public/static/js/496.593cab8a.chunk.js.map

This file was deleted.

3 changes: 0 additions & 3 deletions public/static/js/main.7e0d034a.js

This file was deleted.

130 changes: 0 additions & 130 deletions public/static/js/main.7e0d034a.js.LICENSE.txt

This file was deleted.

1 change: 0 additions & 1 deletion public/static/js/main.7e0d034a.js.map

This file was deleted.

Binary file removed public/static/logo192.png
Binary file not shown.
Binary file removed public/static/logo512.png
Binary file not shown.
25 changes: 0 additions & 25 deletions public/static/manifest.json

This file was deleted.

6 changes: 0 additions & 6 deletions public/vendor/css/bootstrap.min.css

This file was deleted.

1 change: 0 additions & 1 deletion public/vendor/css/bootstrap.min.css.map

This file was deleted.

1 change: 0 additions & 1 deletion public/vendor/js/iframeResizer.contentWindow.map

This file was deleted.

Loading

0 comments on commit dc5b59f

Please sign in to comment.