Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows #93
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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: "Build" | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
workflow_dispatch: | |
branches: [master] | |
jobs: | |
build: | |
outputs: | |
version: ${{ steps.vsix_version.outputs.version-number }} | |
name: Build | |
runs-on: windows-2022 | |
env: | |
Configuration: Release | |
DeployExtension: False | |
VsixManifestPath: src\source.extension.vsixmanifest | |
VsixManifestSourcePath: src\source.extension.cs | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET build dependencies | |
uses: timheuer/bootstrap-dotnet@v1 | |
with: | |
nuget: 'false' | |
sdk: 'false' | |
msbuild: 'true' | |
- name: Increment VSIX version | |
id: vsix_version | |
uses: timheuer/vsix-version-stamp@v1 | |
with: | |
manifest-file: ${{ env.VsixManifestPath }} | |
vsix-token-source-file: ${{ env.VsixManifestSourcePath }} | |
- name: Build | |
run: msbuild /v:m -restore /p:OutDir=\_built | |
- name: Setup test | |
uses: darenm/Setup-VSTest@v1 | |
- name: Test | |
run: vstest.console.exe \_built\*test.dll | |
- name: Upload artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: ${{ github.event.repository.name }}.vsix | |
path: /_built/**/*.vsix | |
publish: | |
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }} | |
needs: build | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Download Package artifact | |
uses: actions/[email protected] | |
with: | |
name: ${{ github.event.repository.name }}.vsix | |
- name: Upload to Open VSIX | |
uses: timheuer/openvsixpublish@v1 | |
with: | |
vsix-file: ${{ github.event.repository.name }}.vsix | |
- name: Tag and Release | |
if: ${{ github.event_name == 'workflow_dispatch' || contains(github.event.head_commit.message, '[release]') }} | |
id: tag_release | |
uses: softprops/[email protected] | |
with: | |
body: Release ${{ needs.build.outputs.version }} | |
tag_name: ${{ needs.build.outputs.version }} | |
files: | | |
**/*.vsix | |
- name: Publish extension to Marketplace | |
if: ${{ github.event_name == 'workflow_dispatch' || contains(github.event.head_commit.message, '[release]') }} | |
uses: cezarypiatek/[email protected] | |
with: | |
extension-file: '${{ github.event.repository.name }}.vsix' | |
publish-manifest-file: 'vs-publish.json' | |
personal-access-code: ${{ secrets.VS_PUBLISHER_ACCESS_TOKEN }} |