Skip to content

Commit 155c4f4

Browse files
committed
Fix packaging
1 parent 1d88794 commit 155c4f4

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ jobs:
66
build:
77
name: Build
88
runs-on: ubuntu-latest
9-
env:
10-
VERSION: ${{ github.sha }}
119

1210
steps:
1311

@@ -21,7 +19,7 @@ jobs:
2119
run: make process-reports
2220

2321
- name: Package
24-
run: make dist
22+
run: make dist VERSION="$GITHUB_SHA"
2523

2624
- name: Upload package
2725
uses: actions/upload-artifact@master

.github/workflows/release.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,14 @@ jobs:
99
build:
1010
name: Create release
1111
runs-on: ubuntu-latest
12-
env:
13-
VERSION: ${{ github.ref }}
1412

1513
steps:
1614

1715
- name: Checkout
1816
uses: actions/checkout@v2
1917

2018
- name: Package
21-
run: make dist
19+
run: make dist VERSION="$GITHUB_REF_NAME"
2220

2321
- name: Changelog
2422
id: changelog

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.1.1
4+
5+
* Repackaged 0.1.0.
6+
37
## 0.1.0
48

59
* Initial release.

0 commit comments

Comments
 (0)