-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dominik Piatek
committed
Jun 23, 2022
1 parent
91d5c6c
commit 32af5a7
Showing
2 changed files
with
4 additions
and
3 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 |
---|---|---|
|
@@ -29,5 +29,5 @@ jobs: | |
git config --global user.email "[email protected]" | ||
git config --global user.name "Github Action" | ||
./scripts/release.sh "${GITHUB_REF/refs\/tags\//}" | ||
git push https://${{ secrets.REGISTRY_TOKEN }}@github.com/${{ secrets.REGISTRY_USERNAME }}/ably-ui.git | ||
git push https://${{ secrets.REGISTRY_TOKEN }}@github.com/${{ secrets.REGISTRY_USERNAME }}/ably/ably-ui.git | ||
shell: bash |
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 |
---|---|---|
|
@@ -27,6 +27,7 @@ jobs: | |
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Github Action" | ||
./scripts/update-preview.sh "${git describe --abbrev=0}" | ||
git push https://${{ secrets.REGISTRY_TOKEN }}@github.com/${{ secrets.REGISTRY_USERNAME }}/ably-ui.git | ||
TAG=$(git describe --abbrev=0) | ||
./scripts/update-preview.sh $TAG | ||
git push https://${{ secrets.REGISTRY_TOKEN }}@github.com/${{ secrets.REGISTRY_USERNAME }}/ably/ably-ui.git | ||
shell: bash |