diff --git a/.github/workflows/docs-deploy.yml b/.github/workflows/docs-deploy.yml new file mode 100644 index 00000000..69f71bd0 --- /dev/null +++ b/.github/workflows/docs-deploy.yml @@ -0,0 +1,29 @@ +name: "Deploy Documentation" + +on: + workflow_dispatch: + push: + branches: + - gh-pages + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: write + pages: write + id-token: write + +# Allow one concurrent deployment +concurrency: + group: "pages" + cancel-in-progress: true + +jobs: + publish: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v6 + - uses: peaceiris/actions-gh-pages@v4 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./ + cname: nvf.notashelf.dev diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml deleted file mode 100644 index 04caeba4..00000000 --- a/.github/workflows/manual.yml +++ /dev/null @@ -1,62 +0,0 @@ -name: "Build and deploy documentation" - -on: - workflow_dispatch: - push: - branches: - - main - paths: - # build the manuals only when docs directory is updated - - docs/** - - modules/** - -# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages -permissions: - contents: write - pages: write - id-token: write - -# Allow one concurrent deployment -concurrency: - group: "pages" - cancel-in-progress: true - -jobs: - check_date: - runs-on: ubuntu-latest - name: Check latest commit - outputs: - should_run: ${{ steps.should_run.outputs.should_run }} - steps: - - uses: actions/checkout@v6 - - name: print latest_commit - run: echo ${{ github.sha }} - - - id: should_run - continue-on-error: true - name: check latest commit is less than a day - if: ${{ github.event_name == 'schedule' }} - run: test -z $(git rev-list --after="24 hours" ${{ github.sha }}) && echo "::set-output name=should_run::false" - - publish: - needs: check_date - if: ${{ needs.check_date.outputs.should_run != 'false' }} - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v6 - - uses: cachix/install-nix-action@v31.10.0 - with: - nix_path: nixpkgs=channel:nixos-unstable - extra_nix_config: | - substituters = https://cache.nixos.org/ https://feel-co.cachix.org - trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= feel-co.cachix.org-1:nwEFNnwZvtl4KKSH5LDg+/+K7bV0vcs6faMHAJ6xx0w= - - - run: | - nix build .#docs -Lv - cp -r result/share/doc public - - - uses: peaceiris/actions-gh-pages@v4 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./public - cname: nvf.notashelf.dev