Skip to content
This repository was archived by the owner on Dec 18, 2025. It is now read-only.

Commit f3c5922

Browse files
committed
chore(release): 0.7.1
1 parent 755d30e commit f3c5922

File tree

4 files changed

+131
-131
lines changed

4 files changed

+131
-131
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
14-
- uses: actions/setup-node@v1
13+
- uses: actions/checkout@v3
14+
- uses: actions/setup-node@v3
1515
with:
1616
node-version: "16"
1717
- name: Cache node modules
18-
uses: actions/cache@v2
18+
uses: actions/cache@v3
1919
env:
2020
cache-name: cache-node-modules
2121
with:

.github/workflows/release.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
matrix:
1414
os: [windows-latest, macos-latest, ubuntu-latest]
1515
steps:
16-
- uses: actions/checkout@v2
17-
- uses: actions/setup-node@v1
16+
- uses: actions/checkout@v3
17+
- uses: actions/setup-node@v3
1818
with:
1919
node-version: "16"
2020
- name: Cache node modules
21-
uses: actions/cache@v2
21+
uses: actions/cache@v3
2222
env:
2323
cache-name: cache-node-modules
2424
with:
@@ -34,7 +34,7 @@ jobs:
3434
run: npm install
3535
- name: Extract version
3636
id: ver
37-
uses: Saionaro/extract-package-version@v1.0.6
37+
uses: Saionaro/extract-package-version@v1.1.1
3838
- name: Build Webpack
3939
run: npm run prod
4040
- name: Build Electron for Windows
@@ -57,14 +57,14 @@ jobs:
5757
run: npm run make -- --linux
5858
- name: Upload Artifact
5959
if: matrix.os == 'windows-latest'
60-
uses: actions/upload-artifact@v2
60+
uses: actions/upload-artifact@v3
6161
with:
6262
name: art
6363
retention-days: 1
6464
path: package/Epherome-${{ steps.ver.outputs.version }}.exe
6565
- name: Upload Artifact
6666
if: matrix.os == 'macos-latest'
67-
uses: actions/upload-artifact@v2
67+
uses: actions/upload-artifact@v3
6868
with:
6969
name: art
7070
retention-days: 1
@@ -73,7 +73,7 @@ jobs:
7373
package/Epherome-${{ steps.ver.outputs.version }}-x64.dmg
7474
- name: Upload Artifact
7575
if: matrix.os == 'ubuntu-latest'
76-
uses: actions/upload-artifact@v2
76+
uses: actions/upload-artifact@v3
7777
with:
7878
name: art
7979
retention-days: 1
@@ -88,18 +88,18 @@ jobs:
8888
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8989
runs-on: ubuntu-latest
9090
steps:
91-
- uses: actions/checkout@v2
92-
- uses: actions/setup-node@v1
91+
- uses: actions/checkout@v3
92+
- uses: actions/setup-node@v3
9393
with:
9494
node-version: "16"
9595
- name: Get Artifacts
96-
uses: actions/download-artifact@v2
96+
uses: actions/download-artifact@v3
9797
with:
9898
name: art
9999
path: package
100100
- name: Extract version
101101
id: ver
102-
uses: Saionaro/extract-package-version@v1.0.6
102+
uses: Saionaro/extract-package-version@v1.1.1
103103
- name: Install Dependencies
104104
run: npm install
105105
- name: Run Post Release Script

0 commit comments

Comments
 (0)