Skip to content
This repository was archived by the owner on Aug 9, 2021. It is now read-only.

Commit b5e462d

Browse files
committed
Bump version to 2.0.1
adds artifacts for backup upload name of artifact
1 parent 5ff10ea commit b5e462d

6 files changed

Lines changed: 22 additions & 6 deletions

File tree

.github/workflows/linux.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,16 @@ jobs:
2929
./qode
3030
outPath: qode-linux-x64-${{github.event.release.tag_name}}.tar.gz
3131

32+
- uses: actions/upload-artifact@v1
33+
with:
34+
name: qode-linux-x64-${{github.event.release.tag_name}}.tar.gz
35+
path: qode-linux-x64-${{github.event.release.tag_name}}.tar.gz
36+
37+
3238
- name: Release
3339
uses: softprops/action-gh-release@master
3440
with:
35-
files: qode-*.tar.gz
41+
files: qode-linux-x64-${{github.event.release.tag_name}}.tar.gz
3642
tag_name: ${{ github.event.release.tag_name }}
3743
env:
3844
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/mac.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,16 @@ jobs:
2525
files: |
2626
./qode
2727
outPath: qode-darwin-x64-${{github.event.release.tag_name}}.tar.gz
28+
29+
- uses: actions/upload-artifact@v1
30+
with:
31+
name: qode-darwin-x64-${{github.event.release.tag_name}}.tar.gz
32+
path: qode-darwin-x64-${{github.event.release.tag_name}}.tar.gz
2833

2934
- name: Release
3035
uses: softprops/action-gh-release@master
3136
with:
32-
files: qode-*.tar.gz
37+
files: qode-darwin-x64-${{github.event.release.tag_name}}.tar.gz
3338
tag_name: ${{ github.event.release.tag_name }}
3439
env:
3540
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/windows.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,15 @@ jobs:
3636
./qode.exp
3737
outPath: qode-win32-x64-${{github.event.release.tag_name}}.tar.gz
3838

39+
- uses: actions/upload-artifact@v1
40+
with:
41+
name: qode-win32-x64-${{github.event.release.tag_name}}.tar.gz
42+
path: qode-win32-x64-${{github.event.release.tag_name}}.tar.gz
43+
3944
- name: Release
4045
uses: softprops/action-gh-release@master
4146
with:
42-
files: qode-*.tar.gz
47+
files: qode-win32-x64-${{github.event.release.tag_name}}.tar.gz
4348
tag_name: ${{ github.event.release.tag_name }}
4449
env:
4550
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

npm/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nodegui/qode",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "Qode is a lightly modified fork of Node.js that merges Node's event loop with Qt's event loop. It is designed to be used together with `@nodegui/nodegui`",
55
"main": "index.js",
66
"files": [

src/qode.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#include "src/integration/node_integration.h"
99
#include "src/helpers/qode_helper.h"
1010

11-
std::string qodeVersion = "2.0.0";
11+
std::string qodeVersion = "2.0.1";
1212

1313
namespace qode {
1414

0 commit comments

Comments
 (0)