mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-10 05:55:41 +00:00
89 lines
3.1 KiB
YAML
89 lines
3.1 KiB
YAML
name: Publish Nightly
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
nightly:
|
|
runs-on: ubuntu-latest
|
|
if: "!contains(format('{0} {1}', github.event.head_commit.message, github.event.pull_request.title), '[ci-skip]')"
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup .NET
|
|
uses: actions/setup-dotnet@v3
|
|
with:
|
|
dotnet-version: 7.0.x
|
|
|
|
- name: Add GitHub NuGet source
|
|
run: dotnet nuget add source --username oliverbooth --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/oliverbooth/index.json"
|
|
|
|
- name: Restore dependencies
|
|
run: dotnet restore
|
|
|
|
- name: Build
|
|
run: dotnet build --configuration Debug --no-restore -p:VersionSuffix='nightly' -p:BuildNumber=${{ github.run_number }}
|
|
|
|
- name: Build NuGet package
|
|
run: |
|
|
mkdir build
|
|
dotnet pack X10D --configuration Debug --no-build -p:SymbolPackageFormat=snupkg --include-symbols --include-source -o build -p:VersionSuffix='nightly' -p:BuildNumber=${{ github.run_number }}
|
|
dotnet pack X10D.Hosting --configuration Debug --no-build -p:SymbolPackageFormat=snupkg --include-symbols --include-source -o build -p:VersionSuffix='nightly' -p:BuildNumber=${{ github.run_number }}
|
|
dotnet pack X10D.Unity --configuration Debug --no-build -p:SymbolPackageFormat=snupkg --include-symbols --include-source -o build -p:VersionSuffix='nightly' -p:BuildNumber=${{ github.run_number }}
|
|
|
|
- name: Push NuGet Package to GitHub
|
|
run: dotnet nuget push "build/*" --source "github" --api-key ${{ secrets.GITHUB_TOKEN }} --skip-duplicate
|
|
|
|
- name: Push NuGet Package to nuget.org
|
|
run: dotnet nuget push "build/*" --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }} --skip-duplicate
|
|
|
|
- name: Upload build artifacts
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: build
|
|
path: build/
|
|
|
|
- name: Checkout upm branch
|
|
uses: actions/checkout@v3
|
|
with:
|
|
ref: upm
|
|
path: upm
|
|
|
|
- name: Build package.json
|
|
run: |
|
|
dotnet run --project ./tools/UpmPackageGenerator/UpmPackageGenerator.csproj "./X10D/bin/Debug/netstandard2.1/X10D.dll"
|
|
cp package.json upm/package.json
|
|
|
|
- name: Copy built artifacts to upm
|
|
run: |
|
|
cd upm
|
|
cp ../X10D/bin/Debug/netstandard2.1/X10D.dll ./X10D.dll
|
|
cp ../X10D/bin/Debug/netstandard2.1/X10D.xml ./X10D.xml
|
|
cp ../X10D.Unity/bin/Debug/netstandard2.1/X10D.Unity.dll ./X10D.Unity.dll
|
|
cp ../X10D.Unity/bin/Debug/netstandard2.1/X10D.Unity.xml ./X10D.Unity.xml
|
|
|
|
- name: Check for changes
|
|
run: |
|
|
cd upm
|
|
git diff --quiet
|
|
continue-on-error: true
|
|
|
|
- name: Commit update
|
|
if: ${{ success() }}
|
|
run: |
|
|
cd upm
|
|
git config user.name github-actions
|
|
git config user.email github-actions@github.com
|
|
git add X10D.dll
|
|
git add X10D.Unity.dll
|
|
git add X10D.xml
|
|
git add X10D.Unity.xml
|
|
git add package.json
|
|
git commit -m "Update upm branch ($GITHUB_SHA)"
|
|
git push
|