Browse Source

Fix 5 Actions doc gen

pull/46/head
Anairkoen Schno 4 years ago
parent
commit
0e4e351ea2
1 changed files with 5 additions and 2 deletions
  1. +5
    -2
      .github/workflows/docs.yml

+ 5
- 2
.github/workflows/docs.yml View File

@ -20,12 +20,15 @@ jobs:
git config --global core.autocrlf true
git config --global user.email (($env:GITHUB_ACTOR,"@users.noreply.github.com") -join "")
git config --global user.name $env:GITHUB_ACTOR
$env:BRANCH_NAME = (git rev-parse --abbrev-ref $env:GITHUB_REF) -join ""
echo $env:BRANCH_NAME
- name: Checkout branch
uses: actions/checkout@v2
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Set branch name variable
shell: powershell
run: |
$env:BRANCH_NAME = (git rev-parse --abbrev-ref $env:GITHUB_REF) -join ""
echo $env:BRANCH_NAME
- name: Locate MSBuild
uses: warrenbuckley/Setup-MSBuild@v1
- name: Setup Nuget


Loading…
Cancel
Save