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

build: prepare v1.3.0 release #183

Merged
merged 3 commits into from
Sep 30, 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
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: Atlassify-dist-mac
path: dist/*
path: |
dist/*
!dist/**/*.dmg
overwrite: true

build-windows:
Expand All @@ -55,7 +57,7 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: Atlassify-dist-win
path: dist/*
path: dist/
overwrite: true

build-linux:
Expand All @@ -78,5 +80,5 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: Atlassify-dist-linux
path: dist/*
path: dist/
overwrite: true
8 changes: 5 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: Atlassify-release-mac
path: dist/*
path: |
dist/*
!dist/**/*.dmg
overwrite: true

release-windows:
Expand All @@ -59,7 +61,7 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: Atlassify-release-win
path: dist/*
path: dist/
overwrite: true

release-linux:
Expand All @@ -82,5 +84,5 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: Atlassify-release-linux
path: dist/*
path: dist/
overwrite: true
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "atlassify",
"version": "1.2.0",
"version": "1.3.0",
"description": "Atlassian notifications on your menu bar.",
"main": "build/main.js",
"scripts": {
Expand Down