File tree Expand file tree Collapse file tree 4 files changed +20
-12
lines changed
Expand file tree Collapse file tree 4 files changed +20
-12
lines changed Original file line number Diff line number Diff line change 55 branches :
66 - master
77 tags :
8- - v*.*.*
8+ - ' * '
99 pull_request :
1010 branches :
1111 - master
@@ -135,13 +135,13 @@ jobs:
135135
136136 - name : Package
137137 id : package
138- if : startsWith(github.ref, 'refs/tags/v ')
138+ if : startsWith(github.ref, 'refs/tags/')
139139 shell : bash
140140 run : ./bin/package ${{github.ref}} ${{matrix.os}} ${{matrix.target}}
141141
142142 - name : Publish
143143 uses : softprops/action-gh-release@v1
144- if : startsWith(github.ref, 'refs/tags/v ')
144+ if : startsWith(github.ref, 'refs/tags/')
145145 with :
146146 draft : false
147147 files : ${{steps.package.outputs.archive}}
Original file line number Diff line number Diff line change @@ -2,9 +2,14 @@ Changelog
22=========
33
44
5+ UNRELEASED - 2020-04-23
6+ -----------------------
7+ - :bug : [ ` xxxxxxxxxxxx ` ] ( https://github.com/casey/intermodal/commits/master ) Fix ` bin/package ` - _ Casey Rodarmor < casey@rodarmor.com > _
8+
9+
510[ v0.1.7] ( https://github.com/casey/intermodal/releases/tag/v0.1.7 ) - 2020-04-22
611------------------------------------------------------------------------------
7- - :bookmark : [ ` xxxxxxxxxxxx ` ] ( https://github.com/casey/intermodal/commits/master ) Release v0.1.7 - _ Casey Rodarmor < casey@rodarmor.com > _
12+ - :bookmark : [ ` f217ac659a14 ` ] ( https://github.com/casey/intermodal/commit/f217ac659a145f4385b68f20a86b610a02f679f5 ) Release v0.1.7 - _ Casey Rodarmor < casey@rodarmor.com > _
813- :zap : [ ` 25ac072985f8 ` ] ( https://github.com/casey/intermodal/commit/25ac072985f8799474298e6922043746888c0c06 ) Allow positional input to ` imdl torrent show ` - Fixes [ #375 ] ( https://github.com/casey/intermodal/issues/375 ) - _ Casey Rodarmor < casey@rodarmor.com > _
914- :bug : [ ` cecd2f66a5d6 ` ] ( https://github.com/casey/intermodal/commit/cecd2f66a5d6a6b44f27f8ca499e359d82d29ab7 ) Fix help strings - _ Casey Rodarmor < casey@rodarmor.com > _
1015- :zap : [ ` ebec2d591a7a ` ] ( https://github.com/casey/intermodal/commit/ebec2d591a7a0e2a2c4cd55217db4ba46b5dd9ed ) Allow positional shell to ` imdl completions ` - Fixes [ #375 ] ( https://github.com/casey/intermodal/issues/375 ) - _ Casey Rodarmor < casey@rodarmor.com > _
Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ pub(crate) trait CommandExt {
88impl CommandExt for Command {
99 #[ throws]
1010 fn out ( & mut self ) -> String {
11+ info ! ( "Running {:?}…" , self ) ;
12+
1113 let output = self
1214 . stdout ( Stdio :: piped ( ) )
1315 . stderr ( Stdio :: inherit ( ) )
Original file line number Diff line number Diff line change @@ -17,13 +17,12 @@ echo "Building $bin..."
1717
1818case $os in
1919 ubuntu-latest)
20- sudo apt-get help2man install musl-tools
20+ sudo apt install help2man musl-tools
2121 ;;
2222 macos-latest)
2323 brew install help2man
2424 ;;
2525 windows-latest)
26- choco install gnuwin
2726 ;;
2827esac
2928
@@ -43,11 +42,6 @@ rm -rf completions
4342mkdir completions
4443$executable completions --dir completions
4544
46- echo " Building man pages..."
47- rm -rf man
48- mkdir man
49- cargo run --package gen man
50-
5145echo " Copying release files..."
5246mkdir dist
5347cp -r \
@@ -59,9 +53,16 @@ cp -r \
5953 LICENSE \
6054 README.md \
6155 completions \
62- man \
6356 $dist
6457
58+ if [[ $os != windows-latest ]]; then
59+ echo " Building man pages..."
60+ rm -rf man
61+ mkdir man
62+ cargo run --package gen man
63+ cp -r man $dist /man
64+ fi
65+
6566cd $dist
6667echo " Creating release archive..."
6768case $os in
You can’t perform that action at this time.
0 commit comments