Skip to content

Commit

Permalink
Testing newline-separated things
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeGat committed Sep 11, 2024
1 parent 098abd0 commit 6f48dea
Showing 1 changed file with 20 additions and 10 deletions.
30 changes: 20 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,27 @@
on:
workflow_dispatch:
inputs:
acl:
paths:
type: string
required: true
default: >-
u::rwx,
d:u::rwx,
o::---,
d:o::---
description: acls
required: false
default: |
checksum
some/other/dir
description: paths
jobs:
a:
rsyncing:
runs-on: ubuntu-latest
env:
EXPERIMENTS_LOCATION: /opt
steps:
- run: echo "${{ inputs.acl }}"
- run: echo "${{ inputs.paths }}"

- run: |
for path in ${{ inputs.paths }}; do
rsync --verbose --recursive \
${{ env.EXPERIMENTS_LOCATION }}/$path \
./wowee
done
- run: |
tree .

0 comments on commit 6f48dea

Please sign in to comment.