actions/workspace/action.yaml

21 lines
528 B
YAML
Raw Normal View History

2023-11-23 16:22:05 -05:00
name: Link Workspace
desciption: Connect persistant storage to workspace
2023-11-23 15:30:34 -05:00
2023-11-23 16:20:08 -05:00
inputs:
2023-11-23 15:49:33 -05:00
key:
required: true
2023-11-23 16:13:50 -05:00
type: string
2023-11-23 16:22:05 -05:00
default: default
2023-11-23 15:49:33 -05:00
2023-11-23 15:30:34 -05:00
runs:
2023-11-23 15:39:16 -05:00
using: composite
2023-11-23 15:30:34 -05:00
steps:
- run: |
2023-11-23 15:49:33 -05:00
WORKSPACE=$(pwd)
2023-11-23 16:44:05 -05:00
mkdir -p "/cache/workspace/${{ inputs.key }}"
cd "/cache/workspace/${{ inputs.key }}"
# cd ..
# rm -rf "$WORKSPACE"
# ln -fs "/cache/workspace/${{ inputs.key }}" "$WORKSPACE"
# echo "Linked: /cache/workspace/${{ inputs.key }} -> $WORKSPACE"