forked from isar-community/isar
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adjust publishing script, update readme.md
Fixes: isar-community#4
- Loading branch information
Martin Clauss
committed
Mar 2, 2024
1 parent
50e5547
commit 6a2e3a1
Showing
4 changed files
with
38 additions
and
24 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,7 @@ | ||
## 3.1.3 | ||
|
||
- Maintenance release, mainly adapts build dependencies | ||
|
||
## 3.1.0+1 | ||
|
||
### Fixes | ||
|
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/bin/bash | ||
|
||
# Publishes the packages for a release to isar-community.dev using the artifacts from github | ||
# Prerequisite: unpub authenticated and token added: | ||
# `unpub_auth login && unpub_auth get | dart pub token add https://isar-community.dev/` | ||
# | ||
|
||
set -o errexit | ||
pushd packages/isar | ||
dart pub get | ||
popd | ||
sh tool/download_binaries.sh | ||
#dart pub token add --env-var=PUB_JSON https://isar-community.dev/ | ||
pushd packages/isar | ||
dart pub publish --force | ||
popd | ||
pushd packages/isar_generator | ||
dart pub publish --force | ||
popd | ||
pushd packages/isar_flutter_libs | ||
dart pub publish --force | ||
popd | ||
|