Publish release version #1
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
name: Publish release version | |
on: | |
workflow_run: | |
workflows: ["Build and test"] | |
# tags: ["v*.*.*"] | |
types: [completed] | |
jobs: | |
publish-release: | |
strategy: | |
fail-fast: false | |
matrix: | |
host: [ | |
{ | |
type: macos, os: macos-13, | |
build-options: "--build-tests -Xswiftc -enable-testing", | |
# No coverage support on MacOS | |
test-options: "-v" | |
} | |
] | |
runs-on: ${{ matrix.host.os }} | |
steps: | |
# - uses: actions/checkout@v3 | |
- uses: actions/download-artifact@v3 | |
with: | |
name: vscode-extension-artifacts | |
- name: Display structure of downloaded files | |
run: ls -R |