diff options
| author | Christoph Schlosser <2466365+cschlosser@users.noreply.github.com> | 2021-05-18 00:30:34 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-18 00:30:34 +0200 |
| commit | 261faccda4b9227f991bce4d69b08732d6087f7f (patch) | |
| tree | 6be08c42df6148c3edc338c181e707c7bbe5955d | |
| parent | 2ba6e66946b3e32c18eadecf36d73134c4253157 (diff) | |
| download | doxdocgen-261faccda4b9227f991bce4d69b08732d6087f7f.tar.gz | |
Update badges (#231)
| -rw-r--r-- | .github/workflows/cd.yml | 4 | ||||
| -rw-r--r-- | README.md | 4 | ||||
| -rw-r--r-- | package.json | 12 |
3 files changed, 10 insertions, 10 deletions
diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 95785ab..96e9a8d 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -1,4 +1,4 @@ -name: CD +name: Release on: push: @@ -12,7 +12,7 @@ on: - created jobs: - release: + pipeline: runs-on: ubuntu-latest steps: - name: Checkout @@ -2,8 +2,8 @@ This VS Code Extensions provides Doxygen Documentation generation on the fly by starting a Doxygen comment block and pressing enter. -[](https://travis-ci.org/cschlosser/doxdocgen) -[](https://ci.appveyor.com/project/cschlosser/doxdocgen) +[](https://github.com/cschlosser/doxdocgen/actions/workflows/ci.yml?query=branch%3Amaster) +[](https://github.com/cschlosser/doxdocgen/actions/workflows/cd.yml?query=event%3Arelease++) [](https://codecov.io/gh/cschlosser/doxdocgen) [](https://gitter.im/doxdocgen) diff --git a/package.json b/package.json index 36e6e4f..c7ec845 100644 --- a/package.json +++ b/package.json @@ -12,14 +12,14 @@ ], "badges": [ { - "url": "https://travis-ci.org/cschlosser/doxdocgen.svg?branch=master", - "href": "https://travis-ci.org/cschlosser/doxdocgen", - "description": "Continuous Integration (Travis)" + "url": "https://img.shields.io/github/workflow/status/cschlosser/doxdocgen/CI/master", + "href": "https://github.com/cschlosser/doxdocgen/actions/workflows/ci.yml?query=branch%3Amaster+", + "description": "Continous integration" }, { - "url": "https://ci.appveyor.com/api/projects/status/sg55990fbxtsfnvk/branch/master?svg=true", - "href": "https://ci.appveyor.com/project/cschlosser/doxdocgen", - "description": "Continuous Integration (AppVeyor)" + "url": "https://img.shields.io/github/workflow/status/cschlosser/doxdocgen/CD?label=Release", + "href": "https://github.com/cschlosser/doxdocgen/actions/workflows/cd.yml?query=event%3Arelease++", + "description": "Release pipeline" }, { "url": "https://codecov.io/gh/cschlosser/doxdocgen/branch/master/graph/badge.svg", |