We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8ccd14 commit eb9f1f5Copy full SHA for eb9f1f5
3 files changed
.github/workflows/build.yml
@@ -27,7 +27,7 @@ jobs:
27
fail-fast: false
28
matrix:
29
include:
30
- - os: macos-latest
+ - os: macos-13
31
- os: windows-latest
32
- os: ubuntu-latest
33
scripts/publish_tag.sh
@@ -11,4 +11,4 @@ git commit -m "Publish version v$VERSION"
11
git tag -a v$VERSION -m "Version $VERSION"
12
13
# Push the tag to the remote repository
14
-git push --follow-tags origin HEAD
+git push --follow-tags https://github.com/onlook-dev/onlook.git HEAD
scripts/remove_tag.sh
@@ -5,4 +5,4 @@ VERSION=$(node -p "require('./apps/studio/package').version")
5
git tag -d v$VERSION
6
7
# Remove tag remotely
8
-git push origin :refs/tags/v$VERSION
+git push https://github.com/onlook-dev/onlook.git :refs/tags/v$VERSION
0 commit comments