add argo tunnel #40
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: Deploy Unstable Manual | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy-unstable: | |
name: Deploy unstable manual | |
runs-on: ubuntu-latest | |
if: github.repository == 'wirecatllc/turbo' | |
strategy: | |
matrix: | |
nix: | |
- name: 2.10.3 | |
url: https://releases.nixos.org/nix/nix-2.10.3/install | |
steps: | |
- uses: actions/[email protected] | |
- uses: cachix/install-nix-action@v17 | |
with: | |
install_url: ${{ matrix.nix.url }} | |
extra_nix_config: | | |
experimental-features = nix-command flakes | |
# == Manual | |
- name: Build manual | |
run: nix build .#manual -L | |
- name: Deploy manual | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: result | |
target-folder: unstable |