diff --git a/.github/workflows/publish-firefox.yml b/.github/workflows/publish-firefox.yml index f8473da8..99fd5f13 100644 --- a/.github/workflows/publish-firefox.yml +++ b/.github/workflows/publish-firefox.yml @@ -30,6 +30,9 @@ jobs: echo STAGE=PRD >> .env echo BACKEND_URL="https://tabsets-72089.web.app" >> .env echo TABSETS_PWA_URL="https://pwa.tabsets.net" >> .env + echo SENTRY_PROJECT_NAME="tabsets" >> .env + echo SENTRY_DSN="${{ secrets.SENTRY_DNS }}" >> .env + echo HOST="firefox.extension" >> .env - name: Build run: | yarn install diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0037cc90..3342956f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -3,6 +3,7 @@ on: push: tags: - 'v*.*.*' + - '!v*.*.*-firefox' jobs: build: diff --git a/scripts/build.sh b/scripts/build.sh index 24b6bf3b..7c7ee108 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -2,7 +2,7 @@ VERSION="$1" if [ $# -eq 0 ] then - echo "run with 'chrome', 'firfox', 'edge' or 'opera' as parameter" + echo "run with 'chrome', 'firefox', 'edge' or 'opera' as parameter" exit fi diff --git a/tagRelease.sh b/tagRelease.sh index 0e6997d1..cd100399 100755 --- a/tagRelease.sh +++ b/tagRelease.sh @@ -1,5 +1,5 @@ if [ -z "$1" ] - then echo "please call with version tag like 'tagRelease.sh v0.5.8'" + then echo "please call with version tag like 'tagRelease.sh v0.5.8(-firefox)'" fi git submodule foreach git tag -m "new release" $1