Skip to content

Commit f72f496

Browse files
authored
Merge pull request #94 from CodeExpertETH/release/1.0.2
1.0.2
2 parents 2bfb42f + 8fefd88 commit f72f496

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- 'v*'
66
workflow_dispatch:
77
env:
8-
NODE_OPTIONS: "--max_old_space_size=4096"
8+
NODE_OPTIONS: '--max_old_space_size=4096'
99
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
1010
APP_SIGNAL_REVISION: ${{ github.ref_name }}
1111
CX_API_URL: ${{ vars.CX_API_URL }}
@@ -50,7 +50,7 @@ jobs:
5050
strategy:
5151
fail-fast: false
5252
matrix:
53-
platform: [ macos-12, macos-13, ubuntu-20.04, windows-latest ]
53+
platform: [macos-13, ubuntu-20.04, windows-latest]
5454

5555
runs-on: ${{ matrix.platform }}
5656
steps:
@@ -73,7 +73,7 @@ jobs:
7373
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
7474
- name: Setup aarch64 requirements
7575
if: matrix.platform == 'macos-13'
76-
run: "rustup target add aarch64-apple-darwin"
76+
run: 'rustup target add aarch64-apple-darwin'
7777
- name: install frontend dependencies
7878
run: yarn && yarn build
7979
- name: install AzureSignTool (windows only)
@@ -113,10 +113,10 @@ jobs:
113113
$jsonContent | ConvertTo-Json | Out-File -FilePath ./secrets.json -Encoding utf8
114114
# Load content from the file
115115
$content = Get-Content -Path "./secrets.json" -Raw
116-
116+
117117
# Replace \r\n with \n
118118
$content = $content -replace "`r`n", "`n"
119-
119+
120120
# Write the content back to the file
121121
Set-Content -Path "./secrets.json" -Value $content
122122
shell: powershell
@@ -136,12 +136,11 @@ jobs:
136136
releaseId: ${{ needs.create-release.outputs.release_id }}
137137
args: ${{ matrix.platform == 'macos-13' && '--target aarch64-apple-darwin' || '' }}
138138

139-
140139
publish-release:
141140
permissions:
142141
contents: write
143142
runs-on: ubuntu-20.04
144-
needs: [ create-release, build-tauri ]
143+
needs: [create-release, build-tauri]
145144

146145
steps:
147146
- name: publish release
@@ -158,4 +157,3 @@ jobs:
158157
draft: true,
159158
prerelease: false
160159
})
161-

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@code-expert/sync",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "",
55
"scripts": {
66
"setup": "scripts/setup",

0 commit comments

Comments
 (0)