-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(release): prepare for next development iteration
- Loading branch information
Showing
7 changed files
with
13 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
## 4.14.0 [unreleased] | ||
|
||
## 4.13.0 [2023-07-28] | ||
|
||
### Features | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,13 +20,7 @@ set -ev | |
SCRIPT_PATH="$( cd "$(dirname "$0")" || exit ; pwd -P )" | ||
cd "$SCRIPT_PATH"/.. | ||
|
||
echo "# Install Git" | ||
apt-get update \ | ||
&& apt-get install git --yes \ | ||
|
||
echo "# Clone client and switch to branch for GH-Pages" | ||
chown root:$USER ~/.ssh/config | ||
chmod 644 ~/.ssh/config | ||
git clone [email protected]:influxdata/influxdb-client-csharp.git \ | ||
&& cd influxdb-client-csharp \ | ||
&& git switch -C gh-pages | ||
|
@@ -43,5 +37,5 @@ cp -R "${SCRIPT_PATH}"/../.circleci/ "$SCRIPT_PATH"/../influxdb-client-csharp/ | |
echo "# Deploy site" | ||
cd "$SCRIPT_PATH"/../influxdb-client-csharp | ||
git add -f . | ||
git -c commit.gpgsign=false commit -m "Pushed the latest Docs to GitHub pages [skip CI]" | ||
git commit -m "Pushed the latest Docs to GitHub pages [skip CI]" | ||
git push -fq origin gh-pages |