1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-02-05 13:15:26 +02:00
goreleaser/docs/ci/codefresh.md
Carlos Alexandro Becker 4c62e4c409
docs: new docs with mkdocs (#1497)
* docs: new docs with mkdocs

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>

* docs: new docs with mkdocs

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>

* docs: new docs with mkdocs

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>

* docs: new docs with mkdocs

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>

* docs: new docs with mkdocs

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>

* docs: new docs with mkdocs

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>

* docs: new docs with mkdocs

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>

* docs: new docs with mkdocs

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>

* fix: merge issues

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>

* fix: merge issues

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>

* fix: merge issues

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>

* feat: package.json

for vercel/now deployment

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
2020-05-10 16:57:11 -03:00

1.3 KiB

Codefresh

Codefresh uses Docker based pipelines where all steps must be Docker containers. Using GoReleaser is very easy via the existing Docker image.

Here is an example pipeline that builds a Go application and then uses GoReleaser.

version: '1.0'
stages:
  - prepare
  - build
  - release
steps:
  main_clone:
    title: 'Cloning main repository...'
    type: git-clone
    repo: '${{CF_REPO_OWNER}}/${{CF_REPO_NAME}}'
    revision: '${{CF_REVISION}}'
    stage: prepare
  BuildMyApp:
    title: Compiling go code
    stage: build
    image: 'golang:1.14'
    commands:
      - go build
  ReleaseMyApp:
    title: Creating packages
    stage: release
    image: 'goreleaser/goreleaser'
    commands:
      - goreleaser --rm-dist

You need to pass the variable GITHUB_TOKEN in the Codefresh UI that contains credentials to your Github account or load it from shared configuration. You should also restrict this pipeline to run only on tags when you add git triggers on it.

More details can be found in the GoReleaser example page.