OSX and Windows do not build with action used as in README
See original GitHub issueUbuntu does fine, but for OSX, end of the log (replacing the name of my project with <name>
) :
Disk image done
Finished 2 bundles at:
/Users/runner/work/<name>/<name>/src-tauri/target/release/bundle/osx/<name>_0.1.0_x64.app
/Users/runner/work/<name>/<name>/src-tauri/target/release/bundle/dmg/<name>_0.1.0_x64.dmg
app:tauri Shutting down tauri process... +1ms
##[error]No artifacts were found.
and for windows:
info: running light to produce D:\a\<name>\<name>\src-tauri\target\release\bundle/msi/<name>_0.1.0_x64.msi
Windows Installer XML Toolset Linker version 3.11.2.4516
Copyright (c) .NET Foundation and contributors. All rights reserved.
Finished 1 bundle at:
D:\a\<name>\<name>\src-tauri\target\release\bundle/msi/<name>_0.1.0_x64.msi
app:tauri Shutting down tauri process... +1ms
##[error]No artifacts were found.
This is using the action like below:
- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
releaseName: "App v__VERSION__"
body: "See the assets to download this version and install."
draft: true
prerelease: false
(direct copy-paste from README – I’ve since fixed the body
and draft
keys)
What needs to be done to have this work? Clearly the action is creating the artifacts fine, just not retaining them.
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
environment-mac-os-catalina-setup/README.md at master
This Readme is a step-by-step guide for how to set up your local environment on a Mac. Please note that these instructions will...
Read more >Windows R CMD check top-level files: (README) [WARNING ...
I have activated GitHub Action to CI for R on Win, OSX, and Linux. On Windows only happen the following warning (which is...
Read more >Build actions for files - Visual Studio (Windows) - Microsoft Learn
All files in a Visual Studio project have a build action. The build action controls what happens to the file when the project...
Read more >Trend Micro Security (for Mac) Server Readme
Trend Micro Security for Mac integrates with OfficeScan, simplifying the management of Macintosh desktops, laptops, and servers though the same Web console that ......
Read more >ServiceDesk Plus readme, release notes, and version history
SD-104710 : Post upgrade to 13008 build and above, the Approvals tab in request details page does not list approval details for older...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
This is because I didn`t update the action yet, sorry about that. Gonna do it right now.
Well it could be the action’s fault so let me know if something is wrong.