File tree Expand file tree Collapse file tree 1 file changed +8
-11
lines changed Expand file tree Collapse file tree 1 file changed +8
-11
lines changed Original file line number Diff line number Diff line change @@ -22,17 +22,14 @@ jobs:
22
22
- id : get_dest_dir
23
23
run : |
24
24
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)
28
26
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 }}
37
34
38
35
You can’t perform that action at this time.
0 commit comments