Skip to content

Commit 609af6b

Browse files
committed
Debug workflow
1 parent 38947e4 commit 609af6b

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/on-new-framework-tag.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Checkout Framework
1313
with:
1414
repository: qooxdoo/qooxdoo
15-
ref: ${{ github.event.inputs.ref }}
15+
ref: ${{ github.event.ref }}
1616
path: 'qooxdoo'
1717
- uses: actions/checkout@v2
1818
name: Checkout published docs
@@ -21,7 +21,11 @@ jobs:
2121
path: 'documentation'
2222
- id: get_dest_dir
2323
run: |
24-
dir=documentation/$(echo "${{ github.event.inputs.ref }}" | cut -d / -f 3 | cut -d . -f 1-2)
24+
echo '${{ github.event }}'
25+
ref=${{ github.event.ref }}
26+
echo "REF=$ref"
27+
dir=documentation/$(echo "$ref" | cut -d / -f 3 | cut -d . -f 1-2)
28+
echo "DIR=$dir"
2529
echo "::set-output name=destination_dir::$dir"
2630
- id: debug
2731
run: echo "Destination dir is ${{ steps.get_dest_dir.outputs.destination_dir }}"

0 commit comments

Comments
 (0)