diff options
author | WlodekM <[email protected]> | 2024-06-16 10:35:45 +0300 |
---|---|---|
committer | WlodekM <[email protected]> | 2024-06-16 10:35:45 +0300 |
commit | abef6da56913f1c55528103e60a50451a39628b1 (patch) | |
tree | b3c8092471ecbb73e568cd0d336efa0e7871ee8d /.github/actions/upload_build |
initial commit
Diffstat (limited to '.github/actions/upload_build')
-rw-r--r-- | .github/actions/upload_build/action.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/actions/upload_build/action.yml b/.github/actions/upload_build/action.yml new file mode 100644 index 0000000..7609946 --- /dev/null +++ b/.github/actions/upload_build/action.yml @@ -0,0 +1,19 @@ +name: Upload binary +description: Uploads a compiled binary +inputs: + SOURCE_FILE: + description: 'Path to file to upload' + required: true + type: string + DEST_NAME: + description: 'Name to use for the uploaded artifact' + required: true + type: string + +runs: + using: "composite" + steps: + - uses: actions/upload-artifact@v4 + with: + name: ${{ inputs.DEST_NAME }} + path: ${{ inputs.SOURCE_FILE }} \ No newline at end of file |