-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from keesschollaart81/develop
v5.2
- Loading branch information
Showing
10 changed files
with
1,983 additions
and
3,378 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: AzD Extension | ||
|
||
on: [ push ] | ||
|
||
jobs: | ||
vscode-extension: | ||
name: AzD Extension | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
||
- uses: actions/checkout@v1 | ||
|
||
- name: Use Node.js 12.x | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 12.x | ||
|
||
- name: NPM Install & Compile | ||
run: | | ||
npm install | ||
npm run build | ||
npm install -g tfx-cli | ||
- name: Create [dev] Extension | ||
if: github.ref == 'refs/heads/develop' | ||
run: | | ||
tfx extension create --output-path sprint-goal.vsix | ||
- name: Create [prd] Extension | ||
if: github.ref == 'refs/heads/master' | ||
run: | | ||
tfx extension create --output-path sprint-goal.vsix --extension-id sprint-goal --override '{ "name": "Sprint Goal" }' | ||
- name: Publish Extension | ||
env: | ||
AZD_TOKEN: ${{ secrets.AZD_TOKEN }} | ||
run: | | ||
tfx extension publish --vsix sprint-goal.vsix --service-url https://marketplace.visualstudio.com --token $AZD_TOKEN |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,6 +76,10 @@ | |
width: 100%; | ||
} | ||
|
||
#vss-extension #detailsText div { | ||
color: var(--text-primary-color) !important; | ||
} | ||
|
||
#vss-extension select { | ||
height: 33px; | ||
} | ||
|
@@ -99,6 +103,7 @@ | |
text-align: center; | ||
border-radius: 4px; | ||
display: none; | ||
color: black; | ||
} | ||
|
||
.footer { | ||
|
@@ -189,7 +194,8 @@ | |
|
||
</div> | ||
|
||
<p class="footer">Experiencing problems with the 'Sprint Goal' extension for Azure DevOps? Or do you have an idea to make 'Sprint Goal' better? Please share this with the developer of 'Sprint Goal' via | ||
<p class="footer">Experiencing problems with the 'Sprint Goal' extension for Azure DevOps? Or do you have an | ||
idea to make 'Sprint Goal' better? Please share this with the developer of 'Sprint Goal' via | ||
<a href="https://twitter.com/keesschollaart" target="_blank">Twitter</a> or by | ||
<a href="mailto:[email protected]">mail</a> | ||
</div> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters