Skip to content

Commit f2d1599

Browse files
fix: remove tag refs in assets
1 parent fec2cd9 commit f2d1599

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

.github/workflows/publish.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
with:
4343
gzip: false
4444
files: >
45-
gitweb-${{ github.ref }}-linux:target/release/gitweb
45+
gitweb-linux:target/release/gitweb
4646
token: ${{ secrets.GITHUB_TOKEN }}
4747

4848
release_windows:
@@ -62,7 +62,7 @@ jobs:
6262
with:
6363
gzip: false
6464
files: >
65-
gitweb-${{ github.ref }}-windows:target/release/gitweb.exe
65+
gitweb-windows:target/release/gitweb.exe
6666
token: ${{ secrets.GITHUB_TOKEN }}
6767

6868
release_macos:
@@ -82,5 +82,5 @@ jobs:
8282
with:
8383
gzip: false
8484
files: >
85-
gitweb-${{ github.ref }}-macos:target/release/gitweb
85+
gitweb-macos:target/release/gitweb
8686
token: ${{ secrets.GITHUB_TOKEN }}

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.2.3] - 2020-10-14
9+
10+
### Changed
11+
12+
- fix: remove tag refs in assets
13+
814
## [0.2.2] - 2020-10-14
915

1016
### Changed

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 = "gitweb"
3-
version = "0.2.2"
3+
version = "0.2.3"
44
authors = ["Yoann Fleury <yoann.fleury@yahoo.com>"]
55
edition = "2018"
66
description = "Open the current remote repository in your browser"

0 commit comments

Comments
 (0)