Merge pull request #29 from JonasKruckenberg/release

Publish New Versions
This commit is contained in:
Jonas Kruckenberg 2022-05-09 12:33:06 +02:00 committed by GitHub
commit d32498b700
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 9 additions and 3 deletions

View File

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

View File

@ -1,5 +1,10 @@
# Changelog
## \[0.1.2-beta.6]
- Correctly encode the output as JSON
- [86b50e9](https://github.com/JonasKruckenberg/tauri-build/commit/86b50e91f77b9e0b951b4d7a02bf8c969caa9c15) fix: correctly encode output as json on 2022-05-09
## \[0.1.2-beta.5]
- Use proper cargo command to detect the artifact directory.

2
dist/index.js generated vendored
View File

@ -203,7 +203,7 @@ function run() {
target: core.getInput('target'),
debug: core.getBooleanInput('debug')
});
core.setOutput('artifacts', artifacts);
core.setOutput('artifacts', JSON.stringify(artifacts));
}
catch (error) {
if (error instanceof Error)

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",
"version": "0.1.2-beta.5",
"version": "0.1.2-beta.6",
"description": "TypeScript template action",
"main": "lib/main.js",
"scripts": {