Skip to content

Commit

Permalink
update packagejson
Browse files Browse the repository at this point in the history
  • Loading branch information
neuecc authored Jan 9, 2024
1 parent fb55095 commit b6e9b44
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,15 @@ env:
DRY_RUN: ${{ github.event.inputs.dry-run }}

jobs:
update-packagejson:
uses: Cysharp/Actions/.github/workflows/update-packagejson.yaml@main
with:
file-path: ./src/R3.Unity/Assets/R3.Unity/package.json
tag: ${{ github.event.inputs.tag }}
dry-run: ${{ fromJson(github.event.inputs.dry-run) }}

build-dotnet:
needs: [update-packagejson]
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
Expand All @@ -34,7 +42,7 @@ jobs:

create-release:
if: github.event.inputs.dry-run == 'false'
needs: [build-dotnet]
needs: [update-packagejson, build-dotnet]
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
Expand All @@ -53,3 +61,10 @@ jobs:
- uses: actions/download-artifact@v2
# Upload to NuGet
- run: dotnet nuget push "./nuget/*.nupkg" --skip-duplicate -s https://www.nuget.org/api/v2/package -k ${{ secrets.NUGET_KEY }}

cleanup:
if: needs.update-packagejson.outputs.is-branch-created == 'true'
needs: [update-packagejson, build-dotnet]
uses: Cysharp/Actions/.github/workflows/clean-packagejson-branch.yaml@main
with:
branch: ${{ needs.update-packagejson.outputs.branch-name }}a
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,10 @@ Interoperability with `IObservable<T>`
---
`Observable<T>` is not `IObservable<T>`. You can convert `Observable<T>.AsIObserable()` or `IObservable<T>.AsObservable()`.

Concurrency Policy
---
TODO:

Implement Custom Operator Guide
---
TODO:
Expand Down

0 comments on commit b6e9b44

Please sign in to comment.