File tree 3 files changed +14
-2
lines changed
3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 40
40
script : " return process.env.RUNS_ON === 'macos-latest' ? '--target universal-apple-darwin' : ''"
41
41
result-encoding : string
42
42
43
+ - uses : actions/github-script@v6
44
+ id : create-env
45
+ with :
46
+ script : |
47
+ const content = `
48
+ VITE_CLIENT_SECRET=${{ secrets.CLIENT_SECRET }}
49
+ VITE_CLIENT_ID=${{ secrets.CLIENT_ID }}
50
+ `
51
+ const root = process.cwd();
52
+ const fs = require('fs')
53
+ fs.writeFileSync('.env', content, 'utf-8')
54
+
43
55
- name : install aarch64-apple-darwin
44
56
run : ' rustup target add aarch64-apple-darwin'
45
57
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " gitification" ,
3
- "version" : " 1.1.1 " ,
3
+ "version" : " 1.1.2 " ,
4
4
"type" : " module" ,
5
5
"scripts" : {
6
6
"dev" : " run-p vite:dev devtools" ,
Original file line number Diff line number Diff line change 8
8
},
9
9
"package" : {
10
10
"productName" : " Gitification" ,
11
- "version" : " 1.1.1 "
11
+ "version" : " 1.1.2 "
12
12
},
13
13
"tauri" : {
14
14
"systemTray" : {
You can’t perform that action at this time.
0 commit comments