Fix CI #18
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
name: Publish release version | |
on: | |
push: | |
tags: ["v*.*.*"] | |
jobs: | |
build: | |
uses: ./.github/workflows/build-and-test.yml | |
publish-release: | |
needs: [build] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Download Hylo LSP artifact-mac | |
id: download-artifact | |
uses: dawidd6/action-download-artifact@v2 | |
with: | |
workflow: build-and-test.yml | |
name: hylo-lsp-artifacts-mac | |
# - name: Download Hylo LSP artifact-common | |
# id: download-artifact | |
# uses: dawidd6/action-download-artifact@v2 | |
# with: | |
# workflow: build-and-test.yml | |
# name: hylo-lsp-artifacts-common | |
- name: Display structure of downloaded files | |
run: ls -R | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: | | |
LICENSE | |
hylo-lsp-artifacts-mac/*.vsix |