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 7e31d5f commit 78b5695Copy full SHA for 78b5695
.github/workflows/dev-release.yml
@@ -48,6 +48,13 @@ jobs:
48
echo "ROCPKG_HASH=${HASH}" >> $GITHUB_ENV
49
echo "ROCPKG_ASSET=${HASH}.tar.br" >> $GITHUB_ENV
50
51
+ - name: Build docs
52
+ env:
53
+ ROC_DOCS_URL_ROOT: /basic-cli/dev
54
+ run: |
55
+ roc docs ./platform/main.roc
56
+ tar -czf docs.tar.gz -C generated-docs .
57
+
58
- name: Publish dev release
59
uses: ncipollo/release-action@v1
60
with:
@@ -56,4 +63,6 @@ jobs:
63
prerelease: true
64
allowUpdates: true
65
replacesArtifacts: true
- artifacts: ${{ env.ROCPKG_ASSET }}
66
+ artifacts: |
67
+ ${{ env.ROCPKG_ASSET }}
68
+ docs.tar.gz
0 commit comments