ant-design-blazor/.github/workflows/gh-pages.yml

55 lines
1.7 KiB
YAML
Raw Normal View History

2019-12-04 23:02:44 +08:00
name: Publish Docs
2019-12-04 21:43:44 +08:00
2019-12-12 22:51:33 +08:00
env:
Version: 0.0.1
NUGET_API_KEY: ${{secrets.NUGET_API_KEY}}
2019-12-12 22:51:33 +08:00
on:
push:
branches:
- master
2019-12-04 21:43:44 +08:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.100
- uses: actions/setup-node@v1
with:
node-version: '10.x'
- name: Publish Docs to github pages
env:
GH_PUSH_TOKEN: ${{secrets.GH_PUSH_TOKEN}}
run: |
npm install
git config --global user.name 'ElderJames'
git config --global user.email 'shunjiey@hotmail.com'
2020-03-11 10:55:43 +08:00
dotnet build
dotnet publish -c Release -o tmp
cd tmp/AntBlazor.Docs.ClientApp/dist
rm index.html
cp -r gh-pages/* gh-pages/.nojekyll ./
rm -r gh-pages
git init
git checkout -b gh-pages
git add -A
git commit -m "docs: Create build $GITHUB_RUN_ID"
git push -f https://ElderJames:$GH_PUSH_TOKEN@github.com/ElderJames/ant-design-blazor.git gh-pages
- name: Package Nightly Nuget
run: |
dotnet pack components/AntBlazor.csproj /p:PackageVersion=$Version-nightly-${GITHUB_RUN_ID} -c Release -o pack-${GITHUB_RUN_ID} --no-build --no-restore
- name: Publish to Nuget
run: |
dotnet nuget push pack-${GITHUB_RUN_ID}/*.nupkg -s https://api.nuget.org/v3/index.json -k $NUGET_API_KEY