File tree Expand file tree Collapse file tree 5 files changed +43
-3
lines changed
Expand file tree Collapse file tree 5 files changed +43
-3
lines changed Original file line number Diff line number Diff line change 7474 steps :
7575 - checkout
7676 - setup_remote_docker
77+ - run : sudo apt-get install rpm
7778 - run : curl -sL https://git.io/goreleaser | bash -s -- --rm-dist --skip-publish --skip-validate --release-notes <(make echo-release-notes)
7879
7980 publish :
8384 steps :
8485 - checkout
8586 - setup_remote_docker
87+ - run : sudo apt-get install rpm
8688 - run : curl -sL https://git.io/goreleaser | bash -s -- --rm-dist --release-notes <(make echo-release-notes)
8789
8890
Original file line number Diff line number Diff line change @@ -11,6 +11,22 @@ builds:
1111 - 386
1212 - amd64
1313
14+ nfpm :
15+ name_template : " {{ .ProjectName }}_{{ .Version }}.{{ .Arch }}"
16+
17+ homepage : https://launchdarkly.com/
18+ maintainer :
LaunchDarkly <[email protected] > 19+ description : Job for finding and sending feature flag code references to LaunchDarkly
20+ license : Apache 2.0
21+ vendor : LaunchDarkly
22+
23+ formats :
24+ - deb
25+ - rpm
26+
27+ replacements :
28+ 386 : i386
29+
1430release :
1531 # If set to auto, will mark the release as not ready for production
1632 # in case there is an indicator for this in the tag e.g. v1.0.0-rc1
@@ -20,7 +36,7 @@ release:
2036brew :
2137 name : ld-find-code-refs
2238
23- description : " Job for finding and sending feature flag code references to LaunchDarkly"
39+ description : Job for finding and sending feature flag code references to LaunchDarkly
2440
2541 homepage : " https://launchdarkly.com"
2642
3955 bin.install "ld-find-code-refs"
4056
4157 commit_author :
42- name : goreleaserbot
58+ name : LaunchDarklyCI
43594460
Original file line number Diff line number Diff line change 22
33All notable changes to the ld-find-code-refs program will be documented in this file. This project adheres to [ Semantic Versioning] ( http://semver.org ) .
44
5+ ## [ 0.5.0] - 2019-02-01
6+ ### Added
7+ - Generate deb and rpm packages when releasing artifacts.
8+
59### Changed
610- Automate Homebrew releases
711- Added word boundaries to flag key regexes.
Original file line number Diff line number Diff line change @@ -32,6 +32,24 @@ brew install ld-find-code-refs
3232
3333You can now run ` ld-find-code-refs ` .
3434
35+ #### Linux
36+ We do not yet have repositories set up for our linux packages, but we do upload deb and rpm packages with our github releases.
37+
38+ ##### Ubuntu
39+ This shell script can be used to download and install ` ag ` and ` ld-find-code-refs ` on Ubuntu.
40+
41+ ``` shell
42+ apt-get install silversearcher-ag
43+
44+ wget -qO- https://api.github.com/repos/launchdarkly/ld-find-code-refs/releases/latest \
45+ | grep " browser_download_url" \
46+ | grep " amd64.deb" \
47+ | cut -d' "' -f4 \
48+ | wget -qi - -O ld-find-code-refs.amd64.deb
49+
50+ dpkg -i ld-find-code-refs.amd64.deb
51+ ```
52+
3553#### Manual
3654
3755Precompiled binaries for the latest release can be found [ here] ( https://github.com/launchdarkly/ld-find-code-refs/releases/latest ) .
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ executors:
3333 LD_HUNK_URL_TEMPLATE : << parameters.hunk_url_template >>
3434 LD_DEFAULT_BRANCH : << parameters.default_branch >>
3535 docker :
36- - image : launchdarkly/ld-find-code-refs:0.4 .0
36+ - image : launchdarkly/ld-find-code-refs:0.5 .0
3737commands :
3838 find-flags :
3939 steps :
You can’t perform that action at this time.
0 commit comments