Skip to content

Commit

Permalink
Fix release tasks by providing configs for commit
Browse files Browse the repository at this point in the history
  • Loading branch information
dk981234 committed Jan 10, 2025
1 parent 6823dcd commit 88aeeb7
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions build-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,12 @@ jobs:
npm install
displayName: "NPM install packages/survey-core"
- powershell: |
$env:GIT_REDIRECT_STDERR = '2>&1'
git config --global user.email "[email protected]"
git config --global user.name "dmitrykurmanov"
displayName: "Set up git config"
- script: |
cd $(Build.SourcesDirectory)/survey-library/packages/survey-core
npm run release -- --release-as $(SurveyJSVersion)
Expand Down Expand Up @@ -301,6 +307,12 @@ jobs:
npm install
displayName: "NPM install packages/survey-react-ui"
- powershell: |
$env:GIT_REDIRECT_STDERR = '2>&1'
git config --global user.email "[email protected]"
git config --global user.name "dmitrykurmanov"
displayName: "Set up git config"
- script: |
cd $(Build.SourcesDirectory)/survey-library/packages/survey-react-ui
npm run release -- --release-as $(SurveyJSVersion)
Expand Down Expand Up @@ -417,6 +429,12 @@ jobs:
npm install
displayName: "NPM install packages/survey-angular-ui"
- powershell: |
$env:GIT_REDIRECT_STDERR = '2>&1'
git config --global user.email "[email protected]"
git config --global user.name "dmitrykurmanov"
displayName: "Set up git config"
- script: |
cd $(Build.SourcesDirectory)/survey-library/packages/survey-angular-ui
npm run release -- --release-as $(SurveyJSVersion)
Expand Down Expand Up @@ -543,6 +561,12 @@ jobs:
npm install
displayName: "NPM install packages/survey-vue3-ui"
- powershell: |
$env:GIT_REDIRECT_STDERR = '2>&1'
git config --global user.email "[email protected]"
git config --global user.name "dmitrykurmanov"
displayName: "Set up git config"
- script: |
cd $(Build.SourcesDirectory)/survey-library/packages/survey-vue3-ui
npm run release -- --release-as $(SurveyJSVersion)
Expand Down Expand Up @@ -668,6 +692,12 @@ jobs:
npm install
displayName: "NPM install packages/survey-js-ui"
- powershell: |
$env:GIT_REDIRECT_STDERR = '2>&1'
git config --global user.email "[email protected]"
git config --global user.name "dmitrykurmanov"
displayName: "Set up git config"
- script: |
cd $(Build.SourcesDirectory)/survey-library/packages/survey-js-ui
npm run release -- --release-as $(SurveyJSVersion)
Expand Down

0 comments on commit 88aeeb7

Please sign in to comment.