Add Winget as install opption for Windows #732
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Push | |
on: | |
push: | |
branches: [ main, development ] | |
jobs: | |
push: | |
name: push | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 21.7.3 | |
- name: Run Antora | |
run: npx antora antora-playbook.yml | |
- name: Copy landing page | |
run: | | |
mkdir -p $GITHUB_WORKSPACE/website/releases/latest/download | |
cp -rf $GITHUB_WORKSPACE/build/site/* $GITHUB_WORKSPACE/website | |
cp -rf $GITHUB_WORKSPACE/landing/* $GITHUB_WORKSPACE/website | |
cp -rf $GITHUB_WORKSPACE/VERSION $GITHUB_WORKSPACE/website/releases/latest/download | |
cp -rf $GITHUB_WORKSPACE/schema $GITHUB_WORKSPACE/website/schema | |
touch $GITHUB_WORKSPACE/website/.nojekyll | |
- name: Deploy to GitHub Pages | |
uses: JamesIves/[email protected] | |
with: | |
folder: website | |
branch: 'gh-pages' | |
commit-message: "[CI] Publish Documentation for ${{ github.sha }}" |