Skip to content

Commit abb7f4c

Browse files
v1.1.351
1 parent 2b5396c commit abb7f4c

File tree

2 files changed

+58
-4
lines changed

2 files changed

+58
-4
lines changed

.github/workflows/npm-publish-github-packages.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
os: [windows-latest,ubuntu-latest]
14+
os: [windows-latest]
1515
steps:
1616
- name: Check out Git repository
1717
uses: actions/checkout@v3
@@ -45,10 +45,10 @@ jobs:
4545
# A personal access token for the GitHub repository in which the release will be created and edited.
4646
# It is recommended to create the access token with the following scopes: `repo, user, admin:repo_hook`.
4747
repo_token: ${{ secrets.GITHUB_TOKEN }}
48-
file: dist/Git History Crawler Setup 1.1.35.exe
49-
asset_name: Git History Crawler v1.1.35.exe
48+
file: dist/Git History Crawler Setup 1.1.34.exe
49+
asset_name: Git History Crawler v1.1.34.exe
5050
tag: ${{ github.ref }}
5151
overwrite: true
52-
body: Try git history Crawler on ${{ matrix.os }}
52+
body: Try Git History Crawler on ${{ matrix.os }}
5353

5454

.github/workflows/ubuntu.yml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
permissions: write-all
2+
name: Build/release
3+
4+
on:
5+
push:
6+
tags:
7+
- 'v[0-9]+.[0-9]+.[0-9]+'
8+
jobs:
9+
release:
10+
runs-on: ${{ matrix.os }}
11+
12+
strategy:
13+
matrix:
14+
os: [ubuntu-latest]
15+
steps:
16+
- name: Check out Git repository
17+
uses: actions/checkout@v3
18+
19+
- name: Install Node.js, NPM and Yarn
20+
uses: actions/setup-node@v2
21+
22+
23+
- name: Compile Electron App
24+
uses: helpforsoftware/[email protected]
25+
with:
26+
#work with v1.1.3
27+
# GitHub token, automatically provided to the action
28+
# (Optional)
29+
github_token: ${{ secrets.github_token }}
30+
31+
# If the commit is tagged with a version (e.g. "v1.0.0"),
32+
# (Optional)
33+
release: ${{ startsWith(github.ref, 'refs/tags/v') }}
34+
35+
# Package manager. NPM, PNPM and Yarn supported. Install Yarn and PNPM yourself. Default is NPM
36+
# (Optional)
37+
package_manager: NPM
38+
39+
# Skip buiding the application
40+
# (Optional)
41+
skip_build: false
42+
- name: Upload binaries to release
43+
uses: svenstaro/[email protected]
44+
with:
45+
# A personal access token for the GitHub repository in which the release will be created and edited.
46+
# It is recommended to create the access token with the following scopes: `repo, user, admin:repo_hook`.
47+
repo_token: ${{ secrets.GITHUB_TOKEN }}
48+
file: dist/Git History Crawler Setup 1.1.34
49+
asset_name: Git History Crawler v1.1.34
50+
tag: ${{ github.ref }}
51+
overwrite: true
52+
body: Try Git History Crawler on Linux (Tested on Ubuntu)
53+
54+

0 commit comments

Comments
 (0)