Skip to content

Commit

Permalink
action: set color
Browse files Browse the repository at this point in the history
  • Loading branch information
kingwingfly committed Feb 14, 2024
1 parent 3db474f commit 2a2344c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/scripts/publish.sh
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
#! /bin/bash
set -e

export TERM=xterm-256color

# Statements waiting to be executed
statements=(
"cargo login $1"
"cargo publish -p fav_derive --dry-run"
"cargo publish -p fav_core --dry-run"
"cargo publish -p fav_utils --dry-run"
"cargo publish -p fav_derive"

"cargo publish -p fav_core --dry-run"
"cargo publish -p fav_core"

"cargo publish -p fav_utils --dry-run"
"cargo publish -p fav_utils"
)

Expand Down
2 changes: 2 additions & 0 deletions .github/scripts/test.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#! /bin/bash
set -e

export TERM=xterm-256color

# Statements waiting to be executed
statements=(
"cargo fetch --locked"
Expand Down

0 comments on commit 2a2344c

Please sign in to comment.