Skip to content

Commit 47026d9

Browse files
committed
Update "check for update" to use master tag
Previously we were using the `latest` tag to trigger builds on Docker Hub.
1 parent d3235b9 commit 47026d9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.0
1+
1.2.1

bin/release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ fi
1919

2020
NIB_VERSION=$(cat VERSION)
2121
LATEST="$(
22-
curl --silent https://raw.githubusercontent.com/technekes/nib/latest/VERSION
22+
curl --silent https://raw.githubusercontent.com/technekes/nib/master/VERSION
2323
)"
2424

2525
if [[ $(git status | grep VERSION) ]]; then

lib/nib/check_for_update.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def self.installed
1616
end
1717

1818
def self.latest
19-
url = 'https://raw.githubusercontent.com/technekes/nib/latest/VERSION'
19+
url = 'https://raw.githubusercontent.com/technekes/nib/master/VERSION'
2020

2121
Net::HTTP.get(URI.parse(url)).chomp
2222
end

0 commit comments

Comments
 (0)