Update workspace/action.yaml
This commit is contained in:
parent
3efed68b97
commit
870ce66a9c
@ -1,9 +1,18 @@
|
||||
name: Load Workspace
|
||||
description: Switch to job's persistant workspace
|
||||
|
||||
input:
|
||||
key:
|
||||
type: string
|
||||
required: true
|
||||
description: Workspace ID
|
||||
|
||||
runs:
|
||||
using: composite
|
||||
steps:
|
||||
- run: |
|
||||
mkdir -p /workspace/${{github.repository}}/${{github.job}}
|
||||
cd /workspace/${{github.repository}}/${{github.job}}
|
||||
WORKSPACE=$(pwd)
|
||||
cd ..
|
||||
rm -rf "$WORKSPACE"
|
||||
mkdir -p "/workspace/${{inputs.key}}"
|
||||
ln -s "/workspace/${{inputs.key}}" "$WORKSPACE"
|
||||
|
Loading…
Reference in New Issue
Block a user