Skip to content

Commit 829c4a3

Browse files
committed
Release v0.6.1
1 parent aa3cdd1 commit 829c4a3

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
lines changed

.github/workflows/release.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,11 @@ jobs:
134134
needs: build
135135
steps:
136136

137+
- name: Install parse-changelog
138+
uses: taiki-e/install-action@v1
139+
with:
140+
tool: parse-changelog@0.5.1
141+
137142
- name: Checkout code
138143
uses: actions/checkout@v3
139144

@@ -175,11 +180,6 @@ jobs:
175180
cat target/aur-bin/PKGBUILD
176181
echo ::endgroup::
177182
178-
- name: Install parse-changelog
179-
uses: taiki-e/install-action@v1
180-
with:
181-
tool: parse-changelog@0.5.1
182-
183183
- name: Extract changelog
184184
run: |
185185
parse-changelog CHANGELOG.md ${{ env.VERSION }} > ${{ github.workspace }}-CHANGELOG.txt
@@ -199,10 +199,16 @@ jobs:
199199
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
200200
working-directory: homebrew-tap
201201
run: |
202+
git config --local user.name "$COMMIT_USERNAME"
203+
git config --local user.email "$COMMIT_EMAIL"
204+
202205
cp ../target/formula/restack.rb .
203206
git add restack.rb
204207
git commit -m "restack ${{ env.VERSION }}"
205208
git push
209+
env:
210+
COMMIT_USERNAME: ${{ secrets.AUR_USERNAME }}
211+
COMMIT_EMAIL: ${{ secrets.AUR_EMAIL }}
206212

207213
- name: Publish AUR package
208214
uses: KSXGitHub/github-actions-deploy-aur@v2.5.0

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Releases
22

3-
## Unreleased
3+
## v0.6.1 (2022-11-07)
44
### Fixed
55
- Linux binaries should be statically linked.
66

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "restack"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
edition = "2021"
55
description = "Teaches git rebase --interactive about your branches."
66
homepage = "https://github.com/abhinav/restack"

0 commit comments

Comments
 (0)