Skip to content

Add configuration option to disable ssh strict host checking (#104) #120

Add configuration option to disable ssh strict host checking (#104)

Add configuration option to disable ssh strict host checking (#104) #120

name: 'Project: Release'
# shall trigger on the main branch when a tag named 'v*' gets created
on:
push:
branches:
- main
tags:
- v*
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Release Build
permissions:
contents: read
id-token: write
uses: ./.github/workflows/shared-build.yml
with:
store-artifacts: true
sign-vsix: true
environment: Release
azure-timestamp-url: ${{ vars.AZURE_TIMESTAMP_URL }}
secrets:
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }}
AZURE_KEYVAULT_URL: ${{ secrets.AZURE_KEYVAULT_URL }}
AZURE_KEYVAULT_CERT_NAME: ${{ secrets.AZURE_KEYVAULT_CERT_NAME }}
github-release:
name: GitHub Release
runs-on: ubuntu-latest
needs: build
permissions:
contents: write
if: ${{ github.ref_type == 'tag' }}
env:
GitHubReleaseBodyFile: ${{ github.workspace }}/src/ReleaseNotes.md
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download artifacts
id: download
uses: actions/download-artifact@v4
with:
name: vsix
# - run: echo ${{steps.download.outputs.download-path}}
# - name: Display structure of downloaded files
# run: ls -R
- name: Create Release
uses: ncipollo/release-action@v1
with:
artifacts: '${{steps.download.outputs.download-path}}/RemoteDebuggerLauncher.vsix'
bodyFile: ${{ env.GitHubReleaseBodyFile }}
marketplace-release:
name: VS Marketplace Release
runs-on: windows-2022
needs: build
permissions: {}
if: ${{ github.ref_type == 'tag' }}
env:
MarketplaceOverviewFile: ${{ github.workspace }}/src/ReleaseNotes.md
steps:
- name: TODO
run: echo TODO