Skip to content

Commit

Permalink
docs: fix a broken link (#2318)
Browse files Browse the repository at this point in the history
  • Loading branch information
JaimeObregon committed Jan 7, 2022
1 parent cd6136d commit dd7d664
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/usage/ci-configuration.md
Expand Up @@ -13,7 +13,7 @@ Here is a few example of the CI services that can be used to achieve this:
- [Wercker Workflows](http://devcenter.wercker.com/docs/workflows)
- [GoCD Pipelines](https://docs.gocd.org/current/introduction/concepts_in_go.html#pipeline).

See [CI configuration recipes](../recipes/release-workflow/README.md#ci-configurations) for more details.

This comment was marked as spam.

Copy link
@srtc387

srtc387 Feb 2, 2022

steps:

  • task: NodeTool@0
    displayName: 'Use Node 14.x'
    inputs:
    versionSpec: 14.x

  • task: Npm@1
    inputs:
    command: custom
    customCommand: ci --no-optional
    displayName: 'Install Dependencies'

  • script: |
    sudo cp .azure-pipelines/linux/xvfb.init /etc/init.d/xvfb
    sudo chmod +x /etc/init.d/xvfb
    sudo update-rc.d xvfb defaults
    sudo service xvfb start
    displayName: 'Start X Virtual Frame Buffer'
    condition: eq(variables['Agent.OS'], 'Linux')

See [CI configuration recipes](../recipes/ci-configurations/README.md) for more details.

## Authentication

Expand Down Expand Up @@ -44,6 +44,6 @@ See each plugin's documentation for the environment variables required.

The authentication token/credentials have to be made available in the CI service via environment variables.

See [CI configuration recipes](../recipes/release-workflow/README.md#ci-configurations) for more details on how to configure environment variables in your CI service.
See [CI configuration recipes](../recipes/ci-configurations/README.md) for more details on how to configure environment variables in your CI service.

**Note**: The environment variables `GH_TOKEN`, `GITHUB_TOKEN`, `GL_TOKEN` and `GITLAB_TOKEN` can be used for both the Git authentication and the API authentication required by [@semantic-release/github](https://github.com/semantic-release/github) and [@semantic-release/gitlab](https://github.com/semantic-release/gitlab).

0 comments on commit dd7d664

Please sign in to comment.