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 df15dd0 commit be12b79Copy full SHA for be12b79
.github/workflows/playground.yml
@@ -35,10 +35,12 @@ jobs:
35
run: |
36
nimble buildKarax -d:homepage="${{ github.event.repository.homepage }}" \
37
-d:release --opt:size --includeJs \
38
- --htmlName=index
39
- - name: mv to deploy dir
40
- run: mv index.html ${{ env.deploy-dir }}
+ --htmlName=index
41
- name: "CNAME"
+ run: mkdir ${{ env.deploy-dir }} || true
+ - name: mv to deploy dir
42
+ run: mv index.html ${{ env.deploy-dir }}/index.html
43
+ - name: create deploy-dir if needed
44
45
cname=$(echo ${{ github.event.repository.homepage }} | grep -oP 'https?://\K[^/]+')
46
prefix="play."
0 commit comments