Adding Linux Support #59
This file contains hidden or 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
--- | |
# File with LF line endings | |
name: Packaging ADO Extension (Dev) | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
pack-dev: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "18" | |
- name: Install tfx-cli | |
run: npm install -g tfx-cli | |
- name: Run setup-dev scripts | |
shell: pwsh | |
run: | | |
./scripts/setup-dev.ps1 | |
- name: Package Extension | |
run: | | |
cd out/dev | |
tfx extension create --manifest-globs vss-extension.json | |
cd ../.. | |
- name: Upload VSIX as artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ado-extension-dev | |
path: ./out/dev/*.vsix |