Skip to content

Commit

Permalink
Fix repo URL in actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominik Piatek committed Jun 23, 2022
1 parent 91d5c6c commit 32af5a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
5 changes: 3 additions & 2 deletions .github/workflows/update-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 32af5a7

Please sign in to comment.