mirror of
https://github.com/JonasKruckenberg/tauri-build.git
synced 2025-08-14 21:05:05 +00:00
Merge pull request #31 from JonasKruckenberg/release
Publish New Versions
This commit is contained in:
commit
cd46581d8d
@ -7,6 +7,7 @@
|
|||||||
".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-glob-on-windows.md",
|
||||||
|
".changes/fix-ignore-linxdeploy.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"
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## \[0.1.2-beta.8]
|
||||||
|
|
||||||
|
- Ignore the linuxdelpoy.AppImage artifact
|
||||||
|
- [af44d01](https://github.com/JonasKruckenberg/tauri-build/commit/af44d01e2641bd82acc2c45f9b9ac8cb887a6577) fix: ignore linuxdeploy on 2022-05-09
|
||||||
|
|
||||||
## \[0.1.2-beta.7]
|
## \[0.1.2-beta.7]
|
||||||
|
|
||||||
- Fix globbing for artifacts on windows.
|
- Fix globbing for artifacts on windows.
|
||||||
|
2
dist/index.js
generated
vendored
2
dist/index.js
generated
vendored
@ -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 = `${bundleDir}/*/*.{${[...macOSExts, linuxExts, windowsExts].join(',')}}`;
|
const artifactsLookupPattern = `${bundleDir}/*/!(linuxdeploy)*.{${[...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
2
dist/index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "tauri-build",
|
"name": "tauri-build",
|
||||||
"version": "0.1.2-beta.7",
|
"version": "0.1.2-beta.8",
|
||||||
"description": "TypeScript template action",
|
"description": "TypeScript template action",
|
||||||
"main": "lib/main.js",
|
"main": "lib/main.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user