Skip to content

Commit 6df238a

Browse files
authored
Merge pull request #25 from DataFlowAnalysis/rename
Change Capitalization, update workflows
2 parents aae023e + 001e9b9 commit 6df238a

File tree

143 files changed

+11
-11
lines changed

Some content is hidden

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

143 files changed

+11
-11
lines changed

.github/dependabot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ updates:
1515
- "dependencies"
1616
- package-ecosystem: "npm"
1717
target-branch: "main"
18-
directory: "/Frontend/WebEditor"
18+
directory: "/frontend/webEditor"
1919
schedule:
2020
interval: "weekly"
2121
day: "wednesday"
@@ -28,7 +28,7 @@ updates:
2828
- "dependencies"
2929
- package-ecosystem: "maven"
3030
target-branch: "main"
31-
directory: "/Backend/AnalysisBackendServer"
31+
directory: "/backend/analysisBackendServer"
3232
schedule:
3333
interval: "weekly"
3434
day: "wednesday"

.github/workflows/backendUpdatesite.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ jobs:
2626
with:
2727
maven-version: 3.9.6
2828
- name: Build and Verify
29-
working-directory: Backend/AnalysisBackendServer
29+
working-directory: backend/analysisBackendServer
3030
run: mvn clean verify
3131
- name: Publish Nightly Update Site
3232
if: github.event_name != 'release' && github.ref == 'refs/heads/main' && github.repository_owner == 'DataFlowAnalysis'
3333
uses: peaceiris/actions-gh-pages@v4
3434
with:
35-
path: Backend/AnalysisBackendServer
35+
path: backend/analysisBackendServer
3636
deploy_key: ${{ secrets.UPDATE_SITE_DEPLOY_KEY }}
3737
external_repository: DataFlowAnalysis/updatesite
3838
destination_dir: nightly/analysis-backend-server/
@@ -42,7 +42,7 @@ jobs:
4242
if: github.event_name == 'release' && github.repository_owner == 'DataFlowAnalysis'
4343
uses: peaceiris/actions-gh-pages@v4
4444
with:
45-
path: Backend/AnalysisBackendServer
45+
path: backend/analysisBackendServer
4646
deploy_key: ${{ secrets.UPDATE_SITE_DEPLOY_KEY }}
4747
external_repository: DataFlowAnalysis/updatesite
4848
destination_dir: release/analysis-backend-server/${{ github.event.release.tag_name }}

.github/workflows/checkFormat.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
node-version: "22"
1717

1818
- name: Install and Lint
19-
working-directory: Frontend/WebEditor
19+
working-directory: frontend/webEditor
2020
run: |
2121
npm install
2222
npx prettier --check ./**/*.html

.github/workflows/checkLint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
node-version: "22"
1717

1818
- name: Install and Lint
19-
working-directory: Frontend/WebEditor
19+
working-directory: frontend/webEditor
2020
run: |
2121
npm install
2222
npm run lint

.github/workflows/pages.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,21 @@ jobs:
2020
with:
2121
node-version: 20.x
2222
cache: npm
23-
cache-dependency-path: Frontend/WebEditor/package-lock.json
23+
cache-dependency-path: frontend/webEditor/package-lock.json
2424

2525
- name: Install dependencies
26-
working-directory: Frontend/WebEditor
26+
working-directory: frontend/webEditor
2727
run: npm install
2828

2929
- name: Build project
30-
working-directory: Frontend/WebEditor
30+
working-directory: frontend/webEditor
3131
run: npm run build
3232

3333
- name: Upload Pages artifact
3434
if: github.ref == 'refs/heads/main'
3535
uses: actions/upload-pages-artifact@v3
3636
with:
37-
path: "./Frontend/WebEditor/dist/"
37+
path: "./frontend/webEditor/dist/"
3838

3939
- name: Deploy to GitHub Pages
4040
if: github.ref == 'refs/heads/main'
File renamed without changes.

0 commit comments

Comments
 (0)