diff options
author | 2022-01-19 22:26:13 +0700 | |
---|---|---|
committer | 2022-01-19 22:26:13 +0700 | |
commit | 79ac5bb890d2076e54d8cad031459a3f575a5110 (patch) | |
tree | 5b78004fcdd7df4668bf108c2a01dc0e3facf801 /.github | |
parent | 8b0f2e62db03ff4395e6aef5a6d5a5c502ca02de (diff) | |
download | iced-79ac5bb890d2076e54d8cad031459a3f575a5110.tar.gz iced-79ac5bb890d2076e54d8cad031459a3f575a5110.tar.bz2 iced-79ac5bb890d2076e54d8cad031459a3f575a5110.zip |
Write `CNAME` file before publishing in `document` workflow
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/document.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/document.yml b/.github/workflows/document.yml index 59871260..849c0778 100644 --- a/.github/workflows/document.yml +++ b/.github/workflows/document.yml @@ -24,6 +24,8 @@ jobs: -p iced_winit \ -p iced_glutin \ -p iced + - name: Write CNAME file + run: echo 'docs.iced.rs' > ./target/doc/CNAME - name: Publish documentation uses: peaceiris/actions-gh-pages@v3 with: |