github.com/ava-labs/avalanchego@v1.11.11/.github/actions/upload-tmpnet-artifact/action.yml (about) 1 name: 'Upload an artifact of tmpnet data' 2 description: 'Upload an artifact of data in the ~/.tmpnet path' 3 4 inputs: 5 name: 6 description: "the name of the artifact to upload" 7 required: true 8 9 runs: 10 using: composite 11 steps: 12 - name: Upload tmpnet data 13 uses: actions/upload-artifact@v4 14 with: 15 name: ${{ inputs.name }} 16 path: | 17 ~/.tmpnet/networks 18 ~/.tmpnet/prometheus/prometheus.log 19 ~/.tmpnet/promtail/promtail.log 20 if-no-files-found: error