Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Hicks <awh4kc@vt.edu>
  • Loading branch information
awhicks committed Feb 23, 2024
2 parents 599389e + d223ab1 commit bb1376d
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 3 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/image-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: image-build
on:
push:
branches:
- master
jobs:
build:
name: opendsa-lti-image
runs-on: self-hosted
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: opendsa/opendsa-lti:latest
2 changes: 1 addition & 1 deletion app/assets/javascripts/inst_books.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion app/views/guides/opendsa-moodle.erb
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@
<p>
<strong>Step 2:</strong> Send an email to
<a href="mailto:opendsa@cs.vt.edu"> opendsa@cs.vt.edu </a>
and ask for instructor access.
and ask for instructor access. If this is your first time using OpenDSA,
please include your Moodle URL in the email.
</p>
<p>
<strong>Step 3:</strong> Once you are provided with the instructor
Expand Down
4 changes: 3 additions & 1 deletion lib/tasks/update_module_versions.rake
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ task :update_module_versions => :environment do
REFERENCE_CONFIGS = [
'Everything',
'PL',
'PIFLAS23'
'PIFLAS23',
'SWDesignAndDataStructs',
'IntroToSoftwareDesign'
]

FULL_CONFIG_FILENAME = '_config.json'
Expand Down

0 comments on commit bb1376d

Please sign in to comment.