Skip to content

fix: injection enum string format 적용 #55

fix: injection enum string format 적용

fix: injection enum string format 적용 #55

Workflow file for this run

name: update Actions.md
on:
workflow_dispatch:
push:
branches: [ main ]
paths:
- 'Packages/UActions/Editor/Actions/**/*.cs'
- 'ActionsDocExporter/ActionsDocExporter/**/*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
ref: main
token: ${{ secrets.REPO_TOKEN }}
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
- name: export Actions.md
run: dotnet run --project ./ActionsDocExporter/ActionsDocExporter -- doc --base-path $(pwd) --dest-path "Actions.md" --actions-docs-path "Documents/Actions"
- name: export workflow_schema.json
run: dotnet run --project ./ActionsDocExporter/ActionsDocExporter -- schema --output $(pwd)/Documents/workflow_schema.json
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: update Actions.md