Skip to content

*: initial scaffolding for the stickydisk action #7

*: initial scaffolding for the stickydisk action

*: initial scaffolding for the stickydisk action #7

Workflow file for this run

name: Basic Sticky Disk Test
on:
workflow_dispatch:
push:
pull_request:
jobs:
test-sticky-disk:
name: Test Sticky Disk
runs-on: blacksmith-staging
steps:
- name: Mount Sticky Disk
uses: useblacksmith/stickydisk@initial-commit
with:
key: foo
path: /shouldseethis
- name: List directory if exists
run: |
if [ -d "/shouldseethis" ]; then
ls -la /shouldseethis
fi
- name: Write test file
run: sudo sh -c 'echo "Hello from sticky disk" > /shouldseethis/test.txt'