mirror of
https://github.com/JonasKruckenberg/tauri-build.git
synced 2025-08-15 05:15:06 +00:00
Merge pull request #29 from JonasKruckenberg/release
Publish New Versions
This commit is contained in:
commit
d32498b700
@ -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"
|
||||
|
@ -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
2
dist/index.js
generated
vendored
@ -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
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",
|
||||
"version": "0.1.2-beta.5",
|
||||
"version": "0.1.2-beta.6",
|
||||
"description": "TypeScript template action",
|
||||
"main": "lib/main.js",
|
||||
"scripts": {
|
||||
|
Loading…
x
Reference in New Issue
Block a user