@@ -46,59 +46,19 @@ jobs:
46
46
run : |
47
47
echo "${{ secrets.NPMRC }}" > ~/.npmrc
48
48
49
- - name : generate templates
50
- run : .github/scripts/template-zip-autogen.sh
51
-
52
- - name : release templates' daily version to github
53
- if : ${{ github.ref == 'refs/heads/dev' && startsWith(github.event.inputs.version, 'pre') }}
54
- uses : marvinpinto/action-automatic-releases@latest
55
- with :
56
- repo_token : ${{ secrets.CD_PAT }}
57
- prerelease : true
58
- automatic_release_tag :
" [email protected] "
59
- files : |
60
- ./*.zip
61
-
62
- - name : release templates' prerelease version to github
63
- if : ${{ startsWith(github.ref, 'refs/heads/release/') && github.event.inputs.version == 'prerelease' }}
64
- uses : marvinpinto/action-automatic-releases@latest
65
- with :
66
- repo_token : ${{ secrets.CD_PAT }}
67
- prerelease : true
68
- automatic_release_tag :
" [email protected] "
69
- files : |
70
- ./*.zip
71
-
72
- - name : cleanup templates
73
- run : rm -rf ./*.zip
74
-
75
- - name : Download Simple Auth bits
76
- uses : nick-invision/retry@v2
77
- with :
78
- timeout_minutes : 10
79
- max_attempts : 10
80
- retry_on : error
81
- shell : pwsh
82
- command : |
83
- $version=Get-Content packages/fx-core/templates/plugins/resource/simpleauth/version.txt
84
- $tag = "simpleauth@"+$version
85
- $fileName="Microsoft.TeamsFx.SimpleAuth_$version.zip"
86
- $url = "https://github.com/OfficeDev/TeamsFx/releases/download/"+$tag+"/"+$fileName
87
- Invoke-WebRequest $url -OutFile packages/fx-core/templates/plugins/resource/simpleauth/SimpleAuth.zip
88
-
89
49
- name : Setup project
90
50
run : |
91
51
npm run setup
92
52
93
53
- name : Setup git
94
54
run : |
95
- git config --global user.name 'MSFT-yiz'
96
- git config --global user.email 'yiz @microsoft.com'
55
+ git config --global user.name "LongOddCode"
56
+ git config --global user.email 'haolong @microsoft.com'
97
57
98
58
- name : check whether vscode extension changed or not
99
59
id : extension-checker
100
60
run : |
101
- if npx lerna changed | grep 'ms-teams-vscode-extension ';
61
+ if npx lerna changed | grep 'lerna-test-pkg4 ';
102
62
then
103
63
echo "::set-output name=CHANGED::true"
104
64
else
124
84
retry_on : error
125
85
command : |
126
86
sleep 5
127
- cd ./packages/vscode-extension
87
+ cd ./packages/p4
128
88
npm install
129
89
npx vsce package
130
90
VERSION=`ls *.vsix | awk -F '.vsix' '{print $1}'`
0 commit comments