mirror of
https://github.com/luxfi/node.git
synced 2026-07-27 03:39:39 +00:00
21 lines
512 B
YAML
21 lines
512 B
YAML
name: 'Upload an artifact of tmpnet data'
|
|
description: 'Upload an artifact of data in the ~/.tmpnet path'
|
|
|
|
inputs:
|
|
name:
|
|
description: "the name of the artifact to upload"
|
|
required: true
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Upload tmpnet data
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: ${{ inputs.name }}
|
|
path: |
|
|
~/.tmpnet/networks
|
|
~/.tmpnet/prometheus/prometheus.log
|
|
~/.tmpnet/promtail/promtail.log
|
|
if-no-files-found: error
|