mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-01-23 09:34:35 -05:00
19 lines
No EOL
449 B
YAML
19 lines
No EOL
449 B
YAML
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 }} |