mirror of
https://github.com/actions/upload-pages-artifact.git
synced 2025-12-09 00:26:17 +00:00
11 lines
267 B
Bash
Executable File
11 lines
267 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Create some files and directories in the current folder
|
|
echo 'hello' > hello.txt
|
|
mkdir subdir
|
|
echo 'world' > subdir/world.txt
|
|
|
|
# Add some symlinks (which we should dereference properly when archiving)
|
|
ln -s subdir subdir-link
|
|
ln -s hello.txt bonjour.txt
|