Skip to content

Commit 7480d4e

Browse files
committed
[ci] rewrite actions to use ncipollo/release-action instead
It's mandatory to have a CHANGELOG.md now Signed-off-by: Ayane Satomi <chinodesuuu@gmail.com>
1 parent 28c519f commit 7480d4e

2 files changed

Lines changed: 7 additions & 8 deletions

File tree

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
tags:
55
- '*'
66
jobs:
7-
build:
7+
release:
88
name: Build
99
runs-on: ubuntu-latest
1010
steps:
@@ -16,11 +16,10 @@ jobs:
1616
MAJOR_VERSION: '2'
1717
VERSION: '${MAJOR_VERSION}.${GITHUB_SHA}'
1818
VSCODE_VERSION: '1.38.1'
19-
MINIFY: 'false'
19+
MINIFY: 'true'
2020
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/*.*'
21+
- uses: ncipollo/release-action@v1
22+
with:
23+
artifacts: "release/*.tar.gz,release/*.zip"
24+
bodyFile: "CHANGELOG.md"
25+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)