diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 7409ad9..b3687b8 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -4,7 +4,7 @@ on: # If specified, the workflow will be triggered automatically once you push to the `main` branch. # Replace `main` with your branch’s name push: - branches: ["main"] + branches: ["master"] # Specify to run a workflow manually from the Actions tab on GitHub workflow_dispatch: @@ -27,7 +27,7 @@ env: jobs: build: runs-on: ubuntu-latest - + steps: - name: Checkout repository uses: actions/checkout@v3 @@ -47,7 +47,7 @@ jobs: artifacts/${{ env.ARTIFACT }} artifacts/report.json retention-days: 7 - + # Add the step below to upload Algolia indexes - name: Upload algolia-indexes uses: actions/upload-artifact@v3 @@ -55,13 +55,13 @@ jobs: name: algolia-indexes path: artifacts/${{ env.ALGOLIA_ARTIFACT }} retention-days: 7 - + # Add the job below and artifacts/report.json on Upload documentation step above if you want to fail the build when documentation contains errors test: # Requires build job results needs: build runs-on: ubuntu-latest - + steps: - name: Download artifacts uses: actions/download-artifact@v1 @@ -73,7 +73,7 @@ jobs: uses: JetBrains/writerside-checker-action@v1 with: instance: ${{ env.INSTANCE }} - + deploy: environment: name: github-pages diff --git a/docs/Writerside/topics/Plugins-Custom-Events.topic b/docs/Writerside/topics/Plugins-Custom-Events.topic index e30442b..7535080 100644 --- a/docs/Writerside/topics/Plugins-Custom-Events.topic +++ b/docs/Writerside/topics/Plugins-Custom-Events.topic @@ -10,13 +10,6 @@ without needing to be aware of their existance. - - - Custom Routing - Event Types - - -

Custom events are a fast and easy way to invoke code in other plugins. (Compare this to Custom Routing, diff --git a/docs/Writerside/topics/Plugins-Routing.topic b/docs/Writerside/topics/Plugins-Routing.topic index f09ebfd..a31a043 100644 --- a/docs/Writerside/topics/Plugins-Routing.topic +++ b/docs/Writerside/topics/Plugins-Routing.topic @@ -103,7 +103,7 @@

public class CommandInputAttribute - : LkTypedParameterAttribute + : LkTypedParameterAttribute<CommandInput, EventInput> { public override CommandInput Inject(Mount context, EventInput input) => input.Get<CommandInput>();