publish new versions

This commit is contained in:
JonasKruckenberg 2022-05-09 12:33:34 +00:00 committed by GitHub
parent 4728478711
commit fa3098e9d6
5 changed files with 9 additions and 3 deletions

View File

@ -6,6 +6,7 @@
".changes/fix-build-args.md", ".changes/fix-build-args.md",
".changes/fix-cli-on-platforms.md", ".changes/fix-cli-on-platforms.md",
".changes/fix-correct-json-formatting.md", ".changes/fix-correct-json-formatting.md",
".changes/fix-glob-on-windows.md",
".changes/fix-optional-chdir.md", ".changes/fix-optional-chdir.md",
".changes/fix-project-path.md", ".changes/fix-project-path.md",
".changes/fix-replace-execa.md" ".changes/fix-replace-execa.md"

View File

@ -1,5 +1,10 @@
# Changelog # Changelog
## \[0.1.2-beta.7]
- Fix globbing for artifacts on windows.
- [4728478](https://github.com/JonasKruckenberg/tauri-build/commit/4728478711cb3d8373d20dd2246f44bacbd51f3b) fix: globbing for artifacts on windows on 2022-05-09
## \[0.1.2-beta.6] ## \[0.1.2-beta.6]
- Correctly encode the output as JSON - Correctly encode the output as JSON

2
dist/index.js generated vendored
View File

@ -107,7 +107,7 @@ function buildProject(options) {
'deb' 'deb'
]; ];
const windowsExts = ['msi', 'msi.zip', 'msi.zip.sig']; const windowsExts = ['msi', 'msi.zip', 'msi.zip.sig'];
const artifactsLookupPattern = (0, path_1.join)(bundleDir, `*/*.{${[...macOSExts, linuxExts, windowsExts].join(',')}}`); const artifactsLookupPattern = `${bundleDir}/*/*.{${[...macOSExts, linuxExts, windowsExts].join(',')}}`;
core.debug(`Looking for artifacts using this pattern: ${artifactsLookupPattern}`); core.debug(`Looking for artifacts using this pattern: ${artifactsLookupPattern}`);
return (0, tiny_glob_1.default)(artifactsLookupPattern, { absolute: true, filesOnly: false }); return (0, tiny_glob_1.default)(artifactsLookupPattern, { absolute: true, filesOnly: false });
}); });

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{ {
"name": "tauri-build", "name": "tauri-build",
"version": "0.1.2-beta.6", "version": "0.1.2-beta.7",
"description": "TypeScript template action", "description": "TypeScript template action",
"main": "lib/main.js", "main": "lib/main.js",
"scripts": { "scripts": {