Skip to content

Commit

Permalink
Merge branch 'master' into deps/replace-ytdl-core
Browse files Browse the repository at this point in the history
  • Loading branch information
moshfeu authored Sep 28, 2024
2 parents 892b6a0 + 28ea35d commit 0ffe7c2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
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 @@ -156,6 +156,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

0 comments on commit 0ffe7c2

Please sign in to comment.