Skip to content

Commit 78de5a4

Browse files
committed
Bump to v1.1.9
For updating github action. See GH-313 for detail
1 parent eb4da79 commit 78de5a4

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/reusable-bump-flake-lock-and-selfup.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
required: false
1818
type: string
1919
version:
20-
default: 'v1.1.8'
20+
default: 'v1.1.9'
2121
required: false
2222
type: string
2323
pr-body:

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,23 @@ Replace strings if the line contains the definition of how to update itself.
1010
In [Nix](https://nixos.org/) [Flake](https://nixos.wiki/wiki/Flakes), you can skip installation steps
1111

1212
```console
13-
> nix run github:kachick/selfup/v1.1.8 -- --version
13+
> nix run github:kachick/selfup/v1.1.9 -- --version
1414
selfup dev (rev)
1515
```
1616

1717
Prebuilt binaries are available for download from [releases](https://github.com/kachick/selfup/releases)
1818

1919
```console
2020
> install_path="$(mktemp -d)"
21-
> curl -L https://github.com/kachick/selfup/releases/download/v1.1.8/selfup_Linux_x86_64.tar.gz | tar xvz -C "$install_path" selfup
21+
> curl -L https://github.com/kachick/selfup/releases/download/v1.1.9/selfup_Linux_x86_64.tar.gz | tar xvz -C "$install_path" selfup
2222
> "${install_path}/selfup" --version
2323
selfup VERSION (REV)
2424
```
2525

2626
You can also use [gh](https://github.com/cli/cli) command.
2727

2828
```bash
29-
gh release download 'v1.1.8' --pattern 'selfup_Linux_x86_64.tar.gz' --repo kachick/selfup
29+
gh release download 'v1.1.9' --pattern 'selfup_Linux_x86_64.tar.gz' --repo kachick/selfup
3030
tar -xvzf 'selfup_Linux_x86_64.tar.gz'
3131
```
3232

flake.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
system:
4545
let
4646
pkgs = nixpkgs.legacyPackages.${system};
47-
version = "v1.1.8";
47+
version = "v1.1.9";
4848
in
4949
rec {
5050
selfup = pkgs.buildGo123Module {

0 commit comments

Comments
 (0)