Skip to content

Commit

Permalink
Fix CI not getting codecov secret
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleJune committed Jul 13, 2023
1 parent f2e1bfb commit bd868b4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ jobs:
steps:
- id: secrets
name: Get secrets
if: env.CODECOV_TOKEN != ''
run: |
if ["${{ secrets.CODECOV_TOKEN }}" != ""];
then
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Udibo React App

[![release](https://img.shields.io/badge/release-0.17.0-success)](https://github.com/udibo/react_app/releases/tag/0.17.0)
[![deno doc](https://doc.deno.land/badge.svg)](https://deno.land/x/udibo_react_app@0.17.0)
[![release](https://img.shields.io/badge/release-0.18.0-success)](https://github.com/udibo/react_app/releases/tag/0.18.0)
[![deno doc](https://doc.deno.land/badge.svg)](https://deno.land/x/udibo_react_app@0.18.0)
[![CI/CD](https://github.com/udibo/react_app/actions/workflows/main.yml/badge.svg)](https://github.com/udibo/react_app/actions/workflows/main.yml)
[![codecov](https://codecov.io/gh/udibo/react_app/branch/main/graph/badge.svg?token=G5XCR01X8E)](https://codecov.io/gh/udibo/react_app)
[![license](https://img.shields.io/github/license/udibo/react_app)](https://github.com/udibo/react_app/blob/main/LICENSE)
Expand Down Expand Up @@ -31,13 +31,13 @@ Apps are created using [React Router](https://reactrouter.com),

This module has 2 entry points.

- [mod.tsx](https://deno.land/x/udibo_react_app@0.17.0/mod.tsx): For use in code
- [mod.tsx](https://deno.land/x/udibo_react_app@0.18.0/mod.tsx): For use in code
that will be used both on the server and in the browser.
- [server.tsx](https://deno.land/x/udibo_react_app@0.17.0/server.tsx): For use
- [server.tsx](https://deno.land/x/udibo_react_app@0.18.0/server.tsx): For use
in code that will only be used on the server.

You can look at the [examples](#examples) and
[deno docs](https://deno.land/x/udibo_react_app@0.17.0) to learn more about
[deno docs](https://deno.land/x/udibo_react_app@0.18.0) to learn more about
usage.

### Examples
Expand Down

0 comments on commit bd868b4

Please sign in to comment.