diff --git a/.github/workflows/release-app.yml b/.github/workflows/release-app.yml index a68a725..d205da6 100644 --- a/.github/workflows/release-app.yml +++ b/.github/workflows/release-app.yml @@ -62,5 +62,15 @@ jobs: name: "cratedb-cfr-${{ steps.artifact-suffix.outputs.lowercase }}" path: dist/cratedb-cfr.exe + - name: Configure GitHub Pages + uses: actions/configure-pages@v3 + + - name: Upload artifact to GitHub Pages 🚀 + if: runner.os != 'Windows' + uses: JamesIves/github-pages-deploy-action@v4 + with: + folder: ~/dist/cratedb-cfr + target-folder: "tmp/${{ steps.artifact-suffix.outputs.lowercase }}" + # TODO: Upload to release assets or GitHub Pages, when invoked on "tag" event. #if: startsWith(github.event.ref, 'refs/tags')