Readme: Update copy for potential FAQs #13
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: "tagged-release" | |
on: | |
push: | |
tags: | |
- "20**.*.*" | |
jobs: | |
tagged-release: | |
name: "Tagged Release" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Checkout source code" | |
uses: "actions/checkout@v3" | |
- name: "Build artifacts" | |
run: make dist | |
- name: "Release" | |
uses: softprops/action-gh-release@v0.1.15 | |
with: | |
token: "${{ secrets.GITHUB_TOKEN }}" | |
body: | | |
Compatible action packages for the above CloudVision version. | |
These packages can be installed through the packaging menu on CloudVision | |
draft: true | |
prerelease: false | |
generate_release_notes: false | |
files: | | |
gen/* |