Skip to content

Commit

Permalink
Merge pull request #1359 from ucfopen/issue/support-dashboard-in-react
Browse files Browse the repository at this point in the history
React conversion + Support Dashboard
  • Loading branch information
clpetersonucf authored Oct 12, 2023
2 parents 67ebdb1 + 66c550f commit 8a44295
Show file tree
Hide file tree
Showing 430 changed files with 46,022 additions and 6,216 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ FUEL_ENV=production
BOOL_SEND_EMAILS=false
#SYSTEM_EMAIL=<MUST_SET>
#FUEL_LOCAL=en_US.UTF-8
#FUEL_ALWAYS_LOAD_PACKAGES="orm,auth,materiaauth,ltiauth"
# FUEL_ALWAYS_LOAD_PACKAGES="orm,auth,materiaauth,ltiauth"
#FUEL_ALWAYS_LOAD_MODULES=""
#GOOGLE_ANALYTICS_ID=xxx

Expand Down
17 changes: 17 additions & 0 deletions .github/workflows/publish_widget_dependencies.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Upload Widget Dependencies Package
on:
workflow_dispatch:
jobs:
checkout-and-install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.13.0'
registry-url: 'https://registry.npmjs.org'
- run: yarn install
- run: yarn build
- run: yarn publish public/dist
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/test_and_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
cd docker && ./run_build_github_release_package.sh ghcr.io/${{ github.repository_owner }}/materia:app-${{ steps.tag_name.outputs.GIT_TAG }}
- name: Upload to Release
if: ${{ startsWith(github.ref, 'refs/tags/v') && !contains(github.ref, '-alpha') }}
if: ${{ startsWith(github.ref, 'refs/tags/v') && !contains(github.ref, '-alpha') && !contains(github.ref, '-rc') }}
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -63,7 +63,7 @@ jobs:
overwrite: true

- name: Upload to Pre-Release
if: ${{ startsWith(github.ref, 'refs/tags/v') && contains(github.ref, '-alpha') }}
if: ${{ startsWith(github.ref, 'refs/tags/v') && contains(github.ref, '-alpha') && contains(github.ref, '-rc') }}
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -115,4 +115,10 @@ licenses/LICENSES_NPM

materia-pkg.zip
materia-pkg-build-info.yml

yarn-error.log

public/dist/*
!public/dist/package.json
!public/dist/path.js
!public/dist/README.md
Loading

0 comments on commit 8a44295

Please sign in to comment.