-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
9 additions
and
7 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 |
---|---|---|
|
@@ -9,7 +9,7 @@ env: | |
-Dorg.gradle.project.eu.xenit.cloudsmith.password=${{ secrets.CLOUDSMITH_APIKEY }} | ||
jobs: | ||
continuousIntegration: | ||
runs-on: ubuntu-20.04 | ||
runs-on: windows-2022 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: webfactory/[email protected] | ||
|
@@ -21,9 +21,11 @@ jobs: | |
${{ secrets.DEPLOY_KEY_EDGE_DOCS }} | ||
${{ secrets.DEPLOY_KEY_FINDER_DOCS }} | ||
${{ secrets.DEPLOY_KEY_INFLOW_DOCS }} | ||
- name: Set up WSL | ||
uses: Vampire/setup-wsl@v2 | ||
- name: init submodules | ||
run: | | ||
git submodule update --init --remote | ||
wsl git submodule update --init --remote | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
|
@@ -37,13 +39,13 @@ jobs: | |
password: ${{ secrets.XENIT_DOCKER_REGISTRY_PASSWORD }} | ||
- name: Information docx | ||
run: | | ||
tar --version | ||
wsl tar --version | ||
- name: Build websites | ||
run: | | ||
[ -e "pandoc.deb" ] || curl -L https://github.com/jgm/pandoc/releases/download/1.17.2/pandoc-1.17.2-1-amd64.deb -o pandoc.deb | ||
echo "84fe35ed9be0f1d8eb6d4cc03d63a8e532e9776f pandoc.deb" | sha1sum -c | ||
dpkg -x pandoc.deb pandoc | ||
PATH="$(pwd)/pandoc/usr/bin":"$PATH" bash -x ./build-websites.sh | ||
wsl [ -e "pandoc.deb" ] || curl -L https://github.com/jgm/pandoc/releases/download/1.17.2/pandoc-1.17.2-1-amd64.deb -o pandoc.deb | ||
wsl echo "84fe35ed9be0f1d8eb6d4cc03d63a8e532e9776f pandoc.deb" | sha1sum -c | ||
wsl dpkg -x pandoc.deb pandoc | ||
wsl PATH="$(pwd)/pandoc/usr/bin":"$PATH" bash -x ./build-websites.sh | ||
# - name: 'Upload Artifact' | ||
# if: success() | ||
# uses: actions/upload-artifact@v3 | ||
|