Skip to content

Commit e832e0b

Browse files
authored
Merge branch '10.0.x' into feat/angular17-portfolios-migration
2 parents 736a742 + c57c1c3 commit e832e0b

File tree

465 files changed

+29354
-10819
lines changed

Some content is hidden

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

465 files changed

+29354
-10819
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Set the default behavior, in case people don't have core.autocrlf set.
2+
* text=auto eol=lf

.github/workflows/deployment.yml

Lines changed: 36 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -10,45 +10,49 @@ on:
1010
# deployment:
1111
# workflow_dispatch:
1212
jobs:
13-
docker-deploy-development-image:
14-
if: github.repository_owner == 'doubtfire-lms'
15-
environment: deployment-secrets
16-
runs-on: ubuntu-latest
17-
steps:
18-
- name: Checkout code
19-
uses: actions/checkout@v4
20-
- name: Set up Docker Buildx
21-
uses: docker/setup-buildx-action@v3
22-
- name: Login to DockerHub
23-
uses: docker/login-action@v3
24-
if: github.event_name != 'pull_request'
25-
with:
26-
username: ${{ secrets.DOCKERHUB_USERNAME }}
27-
password: ${{ secrets.DOCKERHUB_TOKEN }}
28-
- name: Setup meta for development image
29-
id: docker_meta
30-
uses: docker/metadata-action@v5
31-
with:
32-
images: lmsdoubtfire/doubtfire-web
33-
tags: |
34-
type=semver,pattern={{major}}.{{minor}}.x-dev
35-
- name: Build and push web server
36-
id: docker_build
37-
uses: docker/build-push-action@v5
38-
with:
39-
context: .
40-
push: ${{ github.event_name != 'pull_request' }}
41-
tags: ${{ steps.docker_meta.outputs.tags }}
42-
labels: ${{ steps.meta.outputs.labels }}
43-
- name: Image digest
44-
run: echo ${{ steps.docker_build.outputs.digest }}
13+
# docker-deploy-development-image:
14+
# if: github.repository_owner == 'doubtfire-lms'
15+
# environment: deployment-secrets
16+
# runs-on: ubuntu-latest
17+
# steps:
18+
# - name: Checkout code
19+
# uses: actions/checkout@v4
20+
# with:
21+
# submodules: recursive
22+
# - name: Set up Docker Buildx
23+
# uses: docker/setup-buildx-action@v3
24+
# - name: Login to DockerHub
25+
# uses: docker/login-action@v3
26+
# if: github.event_name != 'pull_request'
27+
# with:
28+
# username: ${{ secrets.DOCKERHUB_USERNAME }}
29+
# password: ${{ secrets.DOCKERHUB_TOKEN }}
30+
# - name: Setup meta for development image
31+
# id: docker_meta
32+
# uses: docker/metadata-action@v5
33+
# with:
34+
# images: lmsdoubtfire/doubtfire-web
35+
# tags: |
36+
# type=semver,pattern={{major}}.{{minor}}.x-dev
37+
# - name: Build and push web server
38+
# id: docker_build
39+
# uses: docker/build-push-action@v5
40+
# with:
41+
# context: .
42+
# push: ${{ github.event_name != 'pull_request' }}
43+
# tags: ${{ steps.docker_meta.outputs.tags }}
44+
# labels: ${{ steps.meta.outputs.labels }}
45+
# - name: Image digest
46+
# run: echo ${{ steps.docker_build.outputs.digest }}
4547
docker-web-server:
4648
if: github.repository_owner == 'doubtfire-lms'
4749
environment: deployment-secrets
4850
runs-on: ubuntu-latest
4951
steps:
5052
- name: Checkout code
5153
uses: actions/checkout@v4
54+
with:
55+
submodules: recursive
5256
- name: Set up Docker Buildx
5357
uses: docker/setup-buildx-action@v3
5458
- name: Login to DockerHub

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ vendor/
1111
.sass-cache*
1212
.bundle*
1313
tmp.scss
14-
.vscode
1514
.tscache
1615
a.env
1716
dist/

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "JPlag-Report-Viewer"]
2+
path = JPlag-Report-Viewer
3+
url = https://github.com/doubtfire-lms/jplag-report-viewer-static.git

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"files.eol": "\n"
3+
}

0 commit comments

Comments
 (0)