Skip to content

Deploy webpage

Deploy webpage #101

Workflow file for this run

name: Help Docs
on:
workflow_run:
workflows: [Unit Test]
types: [completed]
workflow_dispatch:
jobs:
build:
name: Create docs
runs-on: ubuntu-latest
container: unityci/editor:ubuntu-2022.3.10f1-linux-il2cpp-2
timeout-minutes: 30
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: moon-dev/Library
key: ${{ runner.os }}-Library-Moon
restore-keys: |
Library-
- name: Unity Activation
run : unity-editor -batchmode -nographics -quit -username ${{ secrets.UNITY_CI_EMAIL }} -password ${{ secrets.UNITY_CI_PASSWORD }} -serial ${{ secrets.UNITY_CI_SERIAL }} -projectPath moon-dev
- name: Generate .csproj
run : unity-editor -batchmode -nographics -quit -projectPath moon-dev -executeMethod Packages.Rider.Editor.RiderScriptEditor.SyncSolution
- name: Return License
run: unity-editor -quit -batchmode -returnlicense -username ${{ secrets.UNITY_CI_EMAIL }} -password ${{ secrets.UNITY_CI_PASSWORD }}
- name: 'Qodana Scan'
uses: JetBrains/[email protected]
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}