mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-22 17:07:20 +01:00
20 lines
470 B
YAML
20 lines
470 B
YAML
name: Upload Pandemonium artifact
|
|
description: Upload the Pandemonium artifact.
|
|
inputs:
|
|
name:
|
|
description: The artifact name.
|
|
default: "${{ github.job }}"
|
|
path:
|
|
description: The path to upload.
|
|
required: true
|
|
default: "bin/*"
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Upload Pandemonium Artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: ${{ inputs.name }}
|
|
path: ${{ inputs.path }}
|
|
retention-days: 14
|