Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Add docfx documentation#985

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
nitanmarcel wants to merge9 commits intoscripthookvdotnet:main
base:main
Choose a base branch
Loading
fromnitanmarcel:main
Open
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
85 changes: 85 additions & 0 deletions.github/workflows/doc-gen.yml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
name: Docfx Documentation Generator

on:
push:
tags:
- 'v3*'

jobs:
preparation:
name: Pre Documentation Generation
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2.3.4
with:
ref: main
submodules: true
- name: Fetch Changelog For V2
id: changelog_two
uses: heinrichreimer/action-github-changelog-generator@v2.2
with:
token: ${{ github.token }}
sinceTag: v0.1
dueTag: v2.10.10
issues: true
issuesWoLabels: true
prWoLabels: true
author: true
verbose: true
compareLink: true
httpCache: true
- name: Fetch Changelog For V3
id: changelog_three
uses: heinrichreimer/action-github-changelog-generator@v2.2
with:
token: ${{ github.token }}
sinceTag: v2.10.10
issues: true
issuesWoLabels: true
prWoLabels: true
author: true
verbose: true
compareLink: true
httpCache: true
- name: Generate Changelog
uses: cschleiden/replace-tokens@v1.0
with:
files: '["scripthookvdotnet-doc/scripting_v2/index.md", "scripthookvdotnet-doc/scripting_v3/index.md"]'
env:
CHANGELOGV2: ${{ steps.changelog_two.outputs.changelog }}
CHANGELOGV3: ${{ steps.changelog_three.outputs.changelog }}
- name: Upload Artefacts
uses: actions/upload-artifact@v2
with:
name: gen-doc
path: .
pages:
strategy:
matrix:
os: [windows-2019]
include:
- os: windows-2019
vs: [2019]
name: Documentation Generation
needs: preparation
runs-on: ${{ matrix.os }}
steps:
- name: Install Depedencies
run: choco install docfx
- name: Clear Working Directory
run: rm -r *
- name: Download Artefacts
uses: actions/download-artifact@v2
with:
name: gen-doc
path: .
- name: Documentation Generation
run: docfx scripthookvdotnet-doc/docfx.json
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
publish_dir: scripthookvdotnet-doc/_site
github_token: ${{ github.token }}


3 changes: 3 additions & 0 deletions.gitmodules
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
[submodule "scripthookvdotnet-doc"]
path = scripthookvdotnet-doc
url = https://github.com/nitanmarcel/scripthookvdotnet-doc
1 change: 1 addition & 0 deletionsscripthookvdotnet-doc
Open in desktop
Submodulescripthookvdotnet-doc added at 29f49b

[8]ページ先頭

©2009-2025 Movatter.jp