Skip to content

Commit

Permalink
fix: Set github user in nightly release pipeline (#24850)
Browse files Browse the repository at this point in the history
* fix: Set github user in nightly release pipeline

* use rm -f
  • Loading branch information
ling1726 authored Sep 21, 2022
1 parent ce5f1ec commit 92bc886
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion azure-pipelines.release-vnext-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,19 @@ jobs:
steps:
- template: .devops/templates/tools.yml

- script: |
git config user.name "Fluent UI Build"
git config user.email "[email protected]"
displayName: Configure git user (used by beachball)
- task: Bash@3
inputs:
filePath: yarn-ci.sh
displayName: yarn

# Deletes all existing changefiles so that only bump that happens is for nightly
- script: |
rm change/*
rm -f change/*
displayName: 'Delete existing changefiles'
# Bumps all v9 packages to a x.x.x-nightly.commitSha version and checks in change files
Expand Down

0 comments on commit 92bc886

Please sign in to comment.