diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 53beb0c87c..328d532241 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -14,10 +14,6 @@ jobs: make spellcheck-docs build: - if: | - github.event_name == 'pull_request' && - !contains(github.event.pull_request.labels.*.name, 'do-not-merge') && - !contains(github.event.pull_request.labels.*.name, 'wip') runs-on: ubuntu-latest concurrency: group: ${{ github.workflow }}-${{ github.ref }} @@ -37,15 +33,9 @@ jobs: path: docs/build/ deploy: - runs-on: ubuntu-latest needs: build - if: | - github.event_name == 'pull_request' && - github.ref == 'refs/heads/main' && - !contains(github.event.pull_request.labels.*.name, 'do-not-merge') && - !contains(github.event.pull_request.labels.*.name, 'wip') - + if: github.ref == 'refs/heads/main' # Grant GITHUB_TOKEN the permissions required to make a Pages deployment permissions: diff --git a/docs/docs/references/cli/exec/_category.yml b/docs/docs/dev/cli-reference/cli/job/exec/_category.yml similarity index 100% rename from docs/docs/references/cli/exec/_category.yml rename to docs/docs/dev/cli-reference/cli/job/exec/_category.yml diff --git a/docs/docs/references/cli/exec/index.md b/docs/docs/dev/cli-reference/cli/job/exec/index.md similarity index 98% rename from docs/docs/references/cli/exec/index.md rename to docs/docs/dev/cli-reference/cli/job/exec/index.md index 8206e70034..a4e508dc97 100644 --- a/docs/docs/references/cli/exec/index.md +++ b/docs/docs/dev/cli-reference/cli/job/exec/index.md @@ -6,7 +6,7 @@ sidebar_label: exec ## Description The `bacalhau exec` command allows for the specification of jobs to be executed from the command line, -without the need for a job specification file (see [job run](../job/run/)). +without the need for a job specification file (see [job run](/dev/cli-reference/cli/job/run/)). ## Usage diff --git a/docs/docs/setting-up/running-node/quick-start.md b/docs/docs/setting-up/running-node/quick-start.md index 4e0f4d684f..4a96fa11f6 100644 --- a/docs/docs/setting-up/running-node/quick-start.md +++ b/docs/docs/setting-up/running-node/quick-start.md @@ -29,7 +29,6 @@ We'll add instructions for your favorite OS. ## Quick start (Ubuntu 22.04) Estimated time for completion: 10 min. - Tested on: Ubuntu 22.04 LTS (x86/64) running on a GCP e2-standard-4 (4 vCPU, 16 GB memory) instance with 40 GB disk size. ### Prerequisites @@ -182,7 +181,7 @@ Firewall configuration is very specific to your network and we can't provide gen ### Install the Bacalhau Binary -[Install the bacalhau binary](./../getting-started/installation.md#install-the-bacalhau-cli) to run `bacalhau serve`. +[Install the bacalhau binary](/getting-started/installation.md#install-the-bacalhau-cli) to run `bacalhau serve`. :::info diff --git a/docs/docs/topic-guides/custom-job-types.md b/docs/docs/topic-guides/custom-job-types.md index 072b9b9597..a9098a24d9 100644 --- a/docs/docs/topic-guides/custom-job-types.md +++ b/docs/docs/topic-guides/custom-job-types.md @@ -27,7 +27,7 @@ Within the CLI each custom job type requires a template file, a JSON representation of the job with a .tpl extension, found in the [templates folder](https://github.com/bacalhau-project/bacalhau/tree/main/cmd/cli/exec/templates). This template defines the base components of the job and is extended by the command line parameters provided to exec. -In addition to the usual runtime and specification flags, that can be found in [the CLI reference for exec](../references/cli/exec/), the `--code` parameter allows for single code files, or directories of code files to be added to the specification. By default they will be added inline to the job specification, although the requester node may chose to change the storage provider for the code. There is however a hard-limit of 10MB for the attached code. +In addition to the usual runtime and specification flags, that can be found in [the CLI reference for exec](/dev/cli-reference/cli/job/exec/), the `--code` parameter allows for single code files, or directories of code files to be added to the specification. By default they will be added inline to the job specification, although the requester node may chose to change the storage provider for the code. There is however a hard-limit of 10MB for the attached code. ## Requester node