Skip to content

Commit 99c0aa2

Browse files
committed
Revert "Update from ishgroup/willow@f75bced"
This reverts commit 32b72c2.
1 parent 32b72c2 commit 99c0aa2

File tree

1,483 files changed

+40749
-12858
lines changed

Some content is hidden

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

1,483 files changed

+40749
-12858
lines changed

.asciidoctorconfig

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
:stylesdir: {asciidoctorconfigdir}/src/css
2+
:stylesheet: oncourse.css
3+
4+
:docinfodir: {asciidoctorconfigdir}/src
5+
// for now only include the header and not the footer
6+
// as the footer contains a loading splash screen
7+
:docinfo: shared-head

.github/workflows/build.yml

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
name: Asciidoc build
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-20.04
12+
13+
steps:
14+
- uses: actions/checkout@v2
15+
16+
- name: Cache
17+
uses: actions/cache@v2
18+
with:
19+
path: |
20+
~/.gradle/caches
21+
~/.gradle/wrapper
22+
key: gradle-${{ hashFiles('**/*.gradle*') }}
23+
24+
- name: Set up JDK
25+
uses: actions/setup-java@v2
26+
with:
27+
distribution: 'temurin'
28+
java-version: 11
29+
30+
- name: graphviz install
31+
run: sudo apt-get install graphviz
32+
33+
- name: Grant execute permission for gradlew
34+
run: chmod +x gradlew
35+
36+
- name: Build
37+
run: ./gradlew distZip
38+
39+
- name: Store release
40+
uses: marvinpinto/action-automatic-releases@latest
41+
if: github.ref == 'refs/heads/main'
42+
with:
43+
automatic_release_tag: "latest"
44+
title: "snapshot"
45+
draft: true
46+
files: |
47+
./manual/build/distributions/manual.zip
48+
./design/build/distributions/design.zip
49+
./web/build/distributions/web.zip
50+
./dsl/build/distributions/dsl.zip
51+
./release-notes/build/distributions/release-notes.zip
52+
repo_token: "${{ secrets.GITHUB_TOKEN }}"

.gitignore

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
.svn
2+
build
3+
design/build
4+
dsl/build
5+
release-notes/build
6+
web/build
7+
manual/build
8+
.idea/workspace.xml
9+
**/.DS_Store
10+
.gradle
11+
/node_modules/
12+
.idea/shelf/

.idea/.name

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/atlassian-ide-plugin.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/azure/azureSettings.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyleSettings.xml

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/codeStyleConfig.xml

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copyright/profiles_settings.xml

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/cssxfire.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/deployment.xml

+15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/dictionaries/ari.xml

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/encodings.xml

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/findbugs-idea.xml

+226
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)