We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28c519f commit 7480d4eCopy full SHA for 7480d4e
2 files changed
.github/workflows/build.yml .github/workflows/build-commit.yml.github/workflows/build.yml renamed to .github/workflows/build-commit.yml
.github/workflows/release.yml .github/workflows/build-release.yml.github/workflows/release.yml renamed to .github/workflows/build-release.yml
@@ -4,7 +4,7 @@ on:
4
tags:
5
- '*'
6
jobs:
7
- build:
+ release:
8
name: Build
9
runs-on: ubuntu-latest
10
steps:
@@ -16,11 +16,10 @@ jobs:
16
MAJOR_VERSION: '2'
17
VERSION: '${MAJOR_VERSION}.${GITHUB_SHA}'
18
VSCODE_VERSION: '1.38.1'
19
- MINIFY: 'false'
+ MINIFY: 'true'
20
PACKAGE: 'true'
21
- - name: Upload artifacts
22
- uses: skx/github-action-publish-binaries@master
23
- env:
24
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25
- with:
26
- args: 'releases/*.*'
+ - uses: ncipollo/release-action@v1
+ with:
+ artifacts: "release/*.tar.gz,release/*.zip"
+ bodyFile: "CHANGELOG.md"
+ token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments