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 c5f200d commit d5c1da7Copy full SHA for d5c1da7
.github/workflows/on-new-framework-tag.yml
@@ -19,11 +19,14 @@ jobs:
19
with:
20
ref: gh-pages
21
path: 'documentation'
22
+
23
- id: get_dest_dir
24
run: |
25
ref=${{ github.event.client_payload.ref }}
26
+ echo "ref is ${{ ref }}"
27
dir=$(echo "$ref" | cut -d / -f 3 | cut -d . -f 1-2)
28
echo "::set-output name=destination_dir::$dir"
29
+ echo "destination dir is ${{ steps.get_dest_dir.outputs.destination_dir }}"
30
31
- name: Deploy to GH page
32
uses: peaceiris/actions-gh-pages@v3
0 commit comments