-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Preparation for move to custom domain (#77)
- Prepared for move to custom domain - Added contact via e-mail - Fixed validation bug - Fixed bug for first time users selecting LAW Pausenregelung - Fixed "invalid date" bug after switching Pausenreglung - Improved build pipeline - Improved usability of first settings dialog (shows required fields on first time use) - Always showing required fields in settings dialog - Made all fonts local - ReEnabled full sources in browser debugging in local ng serve
- Loading branch information
1 parent
5cba337
commit 2fb63f0
Showing
24 changed files
with
1,384 additions
and
490 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: CI Pipeline | ||
|
||
on: | ||
pull_request: | ||
branches: [ master ] | ||
push: | ||
branches: [ master ] | ||
|
||
jobs: | ||
build-project: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [ 18.9.1 ] | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Setup Node ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: Lint & build the app | ||
run: | | ||
npm ci | ||
npm run build:ci | ||
- name: Upload artifact | ||
if: github.ref == 'refs/heads/master' | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: webapp-artifact | ||
path: dist/SISOSIGN/** | ||
|
||
deploy-on-github-pages: | ||
runs-on: ubuntu-latest | ||
needs: build-project | ||
if: github.ref == 'refs/heads/master' | ||
|
||
permissions: | ||
pages: write # to deploy to Pages | ||
id-token: write # to verify the deployment originates from an appropriate source | ||
|
||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
|
||
steps: | ||
- name: Setup GitHub Pages | ||
uses: actions/configure-pages@v1 | ||
- name: Download artifact | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: webapp-artifact | ||
path: dist/ | ||
- name: Upload artifact to GitHub Pages | ||
uses: actions/upload-pages-artifact@v1 | ||
with: | ||
path: dist/ | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.