How to upload asses after completion of both Windows and Linux run
See original GitHub issueHere is my current setup I use for action:
on: [push]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
In my case, windows run takes much more time to complete and build the executable than Linux VM. In such cases, how do I wait for Windows VM to complete the job and trigger the upload process to github release?
Issue Analytics
- State:
- Created a year ago
- Reactions:2
- Comments:5
Top Results From Across the Web
(Almost) All The Ways to File Transfer | by PenTest-duck
To actually download a file, use copy \\ip-addr\share-name\file out-file . SMB Download. Linux File Transfer. Wget (HTTP/FTP).
Read more >Do not change Linux files using Windows apps and tools
To work on files using both Windows and Linux tools, store files in your Windows filesystem – this will enable you to access...
Read more >WSL2: The Complete Guide for Windows 10 & 11 - SitePoint
This tutorial demonstrates how to install, manage, and use a full Linux environment on your Windows 10 or Windows 11 PC with WSL2....
Read more >10 Risks When Dual Booting Operating Systems - MakeUseOf
If you plan to use both Windows and Linux partitions regularly, you could end up using as much storage space on each.
Read more >3 good ways to run Linux on Windows | HPE
Not everyone wants to run Linux on Windows, but for network administrators, programmers, and AI and ML developers, combining the two can ...
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 FreeTop 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
Top GitHub Comments
actions/upload-release-asset
is not maintained any more and causes lots of warnings due to the recentset-output
deprecation.I migrated to https://github.com/shogo82148/actions-upload-release-asset
One approach, not specific to action-gh-release is to use artifacts (see https://github.com/actions/upload-artifact and https://github.com/actions/download-artifact ) to communicate the built stuff from earlier stages to a later stage that invokes action-gh-release to build the release. An example of a workflow that does that, though probably overly complicated for what you want, is at https://github.com/angband/angband/blob/master/.github/workflows/release.yaml .