Skip to content

Commit a4bcf0f

Browse files
committed
Fix workflow
1 parent 668bde0 commit a4bcf0f

File tree

1 file changed

+8
-11
lines changed

1 file changed

+8
-11
lines changed

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

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,14 @@ jobs:
2222
- id: get_dest_dir
2323
run: |
2424
ref=${{ github.event.client_payload.ref }}
25-
echo "REF=$ref"
26-
dir=documentation/$(echo "$ref" | cut -d / -f 3 | cut -d . -f 1-2)
27-
echo "DIR=$dir"
25+
dir=$(echo "$ref" | cut -d / -f 3 | cut -d . -f 1-2)
2826
echo "::set-output name=destination_dir::$dir"
29-
- id: debug
30-
run: echo "Destination dir is ${{ steps.get_dest_dir.outputs.destination_dir }}"
31-
# - name: Deploy to GH page
32-
# uses: peaceiris/actions-gh-pages@v3
33-
# with:
34-
# github_token: ${{ secrets.GITHUB_TOKEN }}
35-
# publish_dir: ./qooxdoo/docs
36-
# destination_dir: ${{ steps.get_dest_dir.outputs.destination_dir }}
27+
28+
- name: Deploy to GH page
29+
uses: peaceiris/actions-gh-pages@v3
30+
with:
31+
github_token: ${{ secrets.GITHUB_TOKEN }}
32+
publish_dir: ./qooxdoo/docs
33+
destination_dir: ${{ steps.get_dest_dir.outputs.destination_dir }}
3734

3835

0 commit comments

Comments
 (0)