feat: documentation lineage propagation #4899
Workflow file for this run
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
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
release: | |
types: | |
- created | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run common build steps | |
uses: ./.github/actions/common-build | |
release-vsstudio-marketplace: | |
runs-on: ubuntu-latest | |
if: success() && startsWith( github.ref, 'refs/tags/') | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run common build steps | |
uses: ./.github/actions/common-build | |
- name: Publish Visual Studio Marketplace | |
run: | | |
if [ "${{ github.event_name }}" == "release" ] && [ "${{ github.event.release.prerelease }}" == "true" ]; then | |
npm run deploy-vscode -- --pre-release | |
else | |
npm run deploy-vscode | |
fi | |
env: | |
VSCE_PAT: ${{ secrets.VSCE_PAT }} | |
release-openvsx-marketplace: | |
runs-on: ubuntu-latest | |
if: success() && startsWith( github.ref, 'refs/tags/') | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run common build steps | |
uses: ./.github/actions/common-build | |
- name: Publish OpenVSX Marketplace | |
run: | | |
if [ "${{ github.event_name }}" == "release" ] && [ "${{ github.event.release.prerelease }}" == "true" ]; then | |
npm run deploy-openvsx -- --pre-release | |
else | |
npm run deploy-openvsx | |
fi | |
env: | |
OVSX_PAT: ${{ secrets.OVSX_PAT }} |