mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 09:21:24 +08:00
ba2c5e51d8
* test: change folder structure and add new TestKit csproj for public testing of AntDesign-based applications * docs: added CN and EN docs about TestKit * fix doc translate * change the directory structure Co-authored-by: Patryk Grzelak <pgrzelak@mutate.app> Co-authored-by: James Yeung <shunjiey@hotmail.com>
80 lines
2.7 KiB
YAML
80 lines
2.7 KiB
YAML
name: Release
|
|
|
|
env:
|
|
NUGET_API_KEY: ${{secrets.NUGET_API_KEY}}
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
jobs:
|
|
release-and-publish-package:
|
|
runs-on: ubuntu-latest
|
|
if: github.repository_owner == 'ant-design-blazor'
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup .NET Core
|
|
uses: actions/setup-dotnet@v1
|
|
with:
|
|
dotnet-version: 3.1.300
|
|
|
|
- name: Setup .NET 5
|
|
uses: actions/setup-dotnet@v1
|
|
with:
|
|
dotnet-version: 5.0.100
|
|
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: "10.x"
|
|
|
|
- name: Package and publish to Nuget📦
|
|
id: pack
|
|
run: |
|
|
VERSION=`git describe --tags`
|
|
echo "Publishing Version: ${VERSION}"
|
|
echo "::set-output name=package_version::${VERSION}"
|
|
npm install
|
|
dotnet build
|
|
dotnet pack components/AntDesign.csproj /p:PackageVersion=$VERSION -c Release -o publish
|
|
dotnet pack tests/AntDesign.TestKit/AntDesign.TestKit.csproj /p:PackageVersion=$VERSION -c Release -o publish
|
|
dotnet nuget push publish/*.nupkg -s https://api.nuget.org/v3/index.json -k $NUGET_API_KEY --skip-duplicate
|
|
|
|
- name: Publish Docs 🎉
|
|
run: |
|
|
echo "/* updated `date "+%Y-%m-%d %H:%M:%S"` */" >> ./site/AntDesign.Docs.Wasm/wwwroot/service-worker.published.js
|
|
cp -rf scripts/gh-pages/* scripts/gh-pages/.nojekyll scripts/gh-pages/.spa ./site/AntDesign.Docs.Wasm/wwwroot
|
|
sed -i s/{version}/$PACKAGE_VERSION/g ./site/AntDesign.Docs.Wasm/wwwroot/index.html
|
|
sed -i s/{version}/$PACKAGE_VERSION/g ./site/AntDesign.Docs/Shared/HeaderMenu.razor
|
|
dotnet publish ./site/AntDesign.Docs.Wasm -c Release -f net5 -o cargo
|
|
env:
|
|
PACKAGE_VERSION: ${{ steps.pack.outputs.package_version }}
|
|
|
|
- name: Deploy 🚀
|
|
uses: JamesIves/github-pages-deploy-action@releases/v3
|
|
with:
|
|
ACCESS_TOKEN: ${{ secrets.GH_PUSH_TOKEN }}
|
|
BRANCH: gh-pages
|
|
FOLDER: cargo/wwwroot
|
|
|
|
- name: Deploy to Github.io 🚀
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
with:
|
|
personal_token: ${{ secrets.GH_PUSH_TOKEN }}
|
|
external_repository: ant-design-blazor/ant-design-blazor.github.io
|
|
publish_branch: master
|
|
publish_dir: ./cargo/wwwroot
|
|
cname: antblazor.com
|
|
keep_files: true
|
|
tag_name: ${{ steps.pack.outputs.package_version }}
|
|
|
|
- name: Sync to Gitee 💕
|
|
uses: wearerequired/git-mirror-action@master
|
|
env:
|
|
SSH_PRIVATE_KEY: ${{ secrets.GITEE_PRIVATE_KEY }}
|
|
with:
|
|
source-repo: "git@github.com:ant-design-blazor/ant-design-blazor.git"
|
|
destination-repo: "git@gitee.com:ant-design-blazor/ant-design-blazor.git"
|