Skip to content

Commit 1b1115a

Browse files
authored
Add beta teams only note to auto-release (#399)
1 parent 09616bb commit 1b1115a

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/ReleaseBody.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# For Beta Teams Only
2+
3+
This release is for beta teams only. Please download the latest stable release (v2020.3.2) if you are not a beta team. You can find v2020.3.2 at https://github.com/wpilibsuite/vscode-wpilib/releases/tag/v2020.3.2

.github/workflows/main.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,12 +159,16 @@ jobs:
159159
needs: [build-mac, build-linux, build-windows, build-windows-vsix]
160160
if: startsWith(github.ref, 'refs/tags/v')
161161
steps:
162+
- uses: actions/checkout@v2
162163
- uses: actions/download-artifact@v2
163164
name: Download Artifacts
165+
with:
166+
path: artifacts
164167
- uses: softprops/action-gh-release@v1
165168
name: Release
166169
with:
170+
body_path: ${{ github.workspace }}/.github/ReleaseBody.txt
167171
prerelease: true
168-
files: "**/*"
172+
files: "artifacts/**/*"
169173
env:
170174
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)