Skip to content

Commit

Permalink
Copy CNAME properly
Browse files Browse the repository at this point in the history
  • Loading branch information
Yatekii committed Dec 29, 2022
1 parent 22e08eb commit 47354f0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ jobs:
run: |
cargo fmt --all -- --check
cargo clippy -- --deny=warnings
#- name: Run tests
# run: |
# npm run test
- name: Copy CNAME
run: |
cp CNAME dist/CNAME
- name: Deploy demo
uses: JamesIves/[email protected]
with:
Expand Down
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
/target
/dist
!dist/CNAME
/dist
File renamed without changes.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ impl LogLevel {
LogLevel::Trace => "white",
LogLevel::Debug => "blue",
LogLevel::Info => "green",
LogLevel::Warn => "yellow",
LogLevel::Warn => "text-orange-500",
LogLevel::Error => "text-red-500",
};

Expand Down

0 comments on commit 47354f0

Please sign in to comment.