From 21cfe9b4cbe2b647c8e9025917e6bca2344a50a5 Mon Sep 17 00:00:00 2001 From: mishamyrt Date: Sun, 18 Feb 2024 01:36:34 +0300 Subject: [PATCH] ci: fix files globs --- .github/workflows/release.yaml | 4 ++-- .vscode/settings.json | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 9760f553..f210c8aa 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -52,5 +52,5 @@ jobs: token: ${{ secrets.USER_PAT }} prerelease: ${{ env.IS_STABLE_VERSION == 'false' }} files: | - dist/Nuga-1.0.0-rc-*.AppImage - dist/Nuga-1.0.0-rc-mac-*.zip + dist/Nuga-*.AppImage + dist/Nuga-*-mac-*.zip diff --git a/.vscode/settings.json b/.vscode/settings.json index 7168cd39..b47f2a71 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,8 @@ { "eslint.workingDirectories": [ "./frontend/" - ] +], +"cSpell.words": [ + "DOCKERHUB" +] }