Skip to content
This repository was archived by the owner on Apr 21, 2023. It is now read-only.

Commit afb60dd

Browse files
committed
fix: update lockfile with releases
1 parent c309756 commit afb60dd

3 files changed

Lines changed: 9 additions & 16 deletions

File tree

.github/workflows/release.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,6 @@ on:
55
- "v[0-9]+.[0-9]+.[0-9]+"
66

77
jobs:
8-
generate_changelog:
9-
runs-on: ubuntu-latest
10-
name: Generate a changelog
11-
steps:
12-
- uses: actions/checkout@v2
13-
- uses: orhun/git-cliff-action@v1
14-
with:
15-
config: cliff.toml
16-
env:
17-
OUTPUT: CHANGELOG.md
18-
198
create_release:
209
runs-on: ubuntu-latest
2110
name: Create release

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

release.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,12 @@ dch -r ""
1111
sed -i "s/pkgver=.*/pkgver=${VERSION}/" PKGBUILD
1212
sed -i '0,/version.*/s/version.*/version = "'"${VERSION}"'"/' **/Cargo.toml
1313

14+
cargo update
15+
1416
git add -A && git commit -m "chore(release): prepare for ${VERSION}"
1517

18+
git cliff --out CHANGELOG.md
19+
1620
export TEMPLATE="\
1721
{% for group, commits in commits | group_by(attribute=\"group\") %}
1822
{{ group | upper_first }}\

0 commit comments

Comments
 (0)