upload-rust-binary-action icon indicating copy to clipboard operation
upload-rust-binary-action copied to clipboard

support post run scripts

Open vrtgs opened this issue 1 year ago • 3 comments

this is useful for example for with use with a packer, such as UPX

vrtgs avatar Aug 15 '24 23:08 vrtgs

To be honest, I personally am not very happy with allowing execution of arbitrary code.

If there is really no other way to support it then I guess we have no choice...

taiki-e avatar Sep 03 '24 07:09 taiki-e

To be honest, I personally am not very happy with allowing execution of arbitrary code.

I mean build scripts are already a thing soooo

vrtgs avatar Sep 03 '24 14:09 vrtgs

https://github.com/taiki-e/upload-rust-binary-action/issues/85

If support uploading artifacts, there is a solution

- uses: taiki-e/upload-rust-binary-action@v1
  with:
    dry-run: true
    artifact: true

- uses: actions/download-artifact@v4
- some post scripts
- uses: softprops/action-gh-release@v2

ahaoboy avatar Oct 15 '24 12:10 ahaoboy