question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

How to upload asses after completion of both Windows and Linux run

See original GitHub issue

Here 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:open
  • Created a year ago
  • Reactions:2
  • Comments:5

github_iconTop GitHub Comments

1reaction
Frederick888commented, Oct 14, 2022

actions/upload-release-asset is not maintained any more and causes lots of warnings due to the recent set-output deprecation.

I migrated to https://github.com/shogo82148/actions-upload-release-asset

0reactions
backwardsEriccommented, Oct 30, 2022

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 .

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found