Skip to content

Commit 02e9380

Browse files
github-actions[bot]DominicFreipapafe
authored
Prepare for 10.5.0 (#2614)
* [create-pull-request] automated change * Update CHANGELOG.md * Temporary modification * Modified artifacts commit * Removed npm publish Co-authored-by: DominicFrei <DominicFrei@users.noreply.github.com> Co-authored-by: Dominic Frei <business.dominic.frei@gmail.com> Co-authored-by: Ferdinando Papale <4850119+papafe@users.noreply.github.com>
1 parent 335aac2 commit 02e9380

File tree

4 files changed

+4
-30
lines changed

4 files changed

+4
-30
lines changed

.github/workflows/publish-release.yml

Lines changed: 1 addition & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
uses: dawidd6/action-download-artifact@d0f291cf39bd21965ea9c4c6e210fc355c3844ed
1515
with:
1616
workflow: main.yml
17-
commit: ${{ github.sha }}
17+
commit: 11777136f471106f93aac9bb157f6e7050244987
1818
path: ${{ github.workspace }}/Realm/packages/
1919
- name: Read version
2020
id: get-version
@@ -23,32 +23,6 @@ jobs:
2323
$nupkgName -match "(?sm)\d{1,2}\.\d{1,2}\.\d{1,2}(?:-[a-zA-Z]*\.\d{1,2})?"
2424
$version = $Matches[0]
2525
echo "::set-output name=version::$version"
26-
- name: Configure AWS Credentials
27-
uses: aws-actions/configure-aws-credentials@v1
28-
with:
29-
aws-access-key-id: ${{ secrets.DOCS_S3_ACCESS_KEY }}
30-
aws-secret-access-key: ${{ secrets.DOCS_S3_SECRET_KEY }}
31-
aws-region: us-east-2
32-
- name: Upload docs
33-
run: |
34-
Expand-Archive -Path Realm/packages/Docs.zip/Docs.zip -DestinationPath Realm/packages
35-
$versions = "${{ steps.get-version.outputs.version }}", "latest"
36-
Foreach ($ver in $versions)
37-
{
38-
aws s3 sync --acl public-read "${{ github.workspace }}\Realm\packages\_site" s3://realm-sdks/realm-sdks/dotnet/$ver/
39-
}
40-
- name: NuGet Publish Realm.Fody.${{ steps.get-version.outputs.version }}
41-
run: dotnet nuget push ${{ github.workspace }}/Realm/packages/Realm.Fody.${{ steps.get-version.outputs.version }}/Realm.Fody.${{ steps.get-version.outputs.version }}.nupkg --skip-duplicate --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
42-
- name: NuGet Publish Realm.${{ steps.get-version.outputs.version }}
43-
run: dotnet nuget push ${{ github.workspace }}/Realm/packages/Realm.${{ steps.get-version.outputs.version }}/Realm.${{ steps.get-version.outputs.version }}.nupkg --skip-duplicate --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
44-
- uses: actions/setup-node@v2
45-
with:
46-
node-version: 12.x
47-
registry-url: https://registry.npmjs.org
48-
- name: Npm Publish io.realm.unity-${{ steps.get-version.outputs.version }}
49-
run: npm publish ${{ github.workspace }}/Realm/packages/io.realm.unity-${{ steps.get-version.outputs.version }}.tgz/io.realm.unity-${{ steps.get-version.outputs.version }}.tgz
50-
env:
51-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
5226
- name: Find Release PR
5327
uses: juliangruber/find-pull-request-action@f9f7484f8237cf8485e5ab826e542ba5dd9e9c6e
5428
id: find-pull-request

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## vNext (TBD)
1+
## 10.5.0 (2021-09-09)
22

33
### Enhancements
44
* ThreadSafeReference no longer pins the source transaction version for anything other than a Results backed by a Query. (Core upgrade)

Realm/AssemblyInfo.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
22
<PropertyGroup>
33
<Product>Realm .NET</Product>
4-
<VersionPrefix>10.4.1</VersionPrefix>
4+
<VersionPrefix>10.5.0</VersionPrefix>
55
<Description Condition="'$(Description)' == ''">Realm is a mobile database: a replacement for SQLite</Description>
66
<Company>Realm Inc.</Company>
77
<Copyright>Copyright © $([System.DateTime]::Now.ToString(yyyy)) Realm Inc.</Copyright>

Realm/Realm.Unity/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "io.realm.unity",
3-
"version": "10.4.1",
3+
"version": "10.5.0",
44
"displayName": "Realm",
55
"description": "Realm is an embedded mobile database for Unity",
66
"unity": "2021.1",

0 commit comments

Comments
 (0)