We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38947e4 commit 609af6bCopy full SHA for 609af6b
.github/workflows/on-new-framework-tag.yml
@@ -12,7 +12,7 @@ jobs:
12
name: Checkout Framework
13
with:
14
repository: qooxdoo/qooxdoo
15
- ref: ${{ github.event.inputs.ref }}
+ ref: ${{ github.event.ref }}
16
path: 'qooxdoo'
17
- uses: actions/checkout@v2
18
name: Checkout published docs
@@ -21,7 +21,11 @@ jobs:
21
path: 'documentation'
22
- id: get_dest_dir
23
run: |
24
- dir=documentation/$(echo "${{ github.event.inputs.ref }}" | cut -d / -f 3 | cut -d . -f 1-2)
+ 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"
29
echo "::set-output name=destination_dir::$dir"
30
- id: debug
31
run: echo "Destination dir is ${{ steps.get_dest_dir.outputs.destination_dir }}"
0 commit comments