Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci(actions): bump checkout and setup-node #139

Merged
merged 3 commits into from
Sep 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:

steps:
- name: Check out Git repository
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 14
node-version: 18

- name: Installing dependencies
run: yarn
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,13 @@ To release a new version, just push a new tag. The tag should be in the format `

Once you happy with the release, just publish it.

Let's say the version is `1.2.3`:

```shell
git tag -a v1.2.3 -m "1.2.3"
git push origin refs/tags/v1.2.3
```

### Stack

<table>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"dist-linux": "npm run dist --linux",
"dist-windows": "npm run dist -- --win",
"publish-linux": "electron-builder --linux --publish onTagOrDraft",
"generate-icons": "./node_modules/.bin/electron-icon-maker --input=app-resources/logo-full-size.png --output=resources",
"generate-icons": "npx electron-icon-maker --input=app-resources/logo-full-size.png --output=resources",
"build": "npm run generate-icons && webpack --config webpack.prod.js",
"test": "node --trace-warnings ./test/runTests.js",
"test:watch": "jest --watch",
Expand Down
Loading