publish new versions

This commit is contained in:
JonasKruckenberg 2022-05-09 10:32:17 +00:00 committed by GitHub
parent c130bb5fda
commit 7770f671c9
5 changed files with 9 additions and 3 deletions

View File

@ -5,6 +5,7 @@
".changes/fix-artifact-detection.md", ".changes/fix-artifact-detection.md",
".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-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.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] ## \[0.1.2-beta.5]
- Use proper cargo command to detect the artifact directory. - 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'), target: core.getInput('target'),
debug: core.getBooleanInput('debug') debug: core.getBooleanInput('debug')
}); });
core.setOutput('artifacts', artifacts); core.setOutput('artifacts', JSON.stringify(artifacts));
} }
catch (error) { catch (error) {
if (error instanceof 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", "name": "tauri-build",
"version": "0.1.2-beta.5", "version": "0.1.2-beta.6",
"description": "TypeScript template action", "description": "TypeScript template action",
"main": "lib/main.js", "main": "lib/main.js",
"scripts": { "scripts": {