File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -36,12 +36,13 @@ jobs:
36
36
repository : anttiharju/homebrew-tap
37
37
token : ${{ steps.generate-token.outputs.token }}
38
38
path : homebrew-tap
39
- - name : Download bottles
39
+ - name : Download binary archives
40
40
env :
41
41
GH_TOKEN : ${{ github.token }}
42
42
TAG : ${{ inputs.tag }}
43
43
run : |
44
44
gh release download "$TAG" --pattern 'vmatch-*64.tar.gz'
45
+ ls -- *.tar.gz
45
46
- name : Render formula template
46
47
uses : anttiharju/actions/render-template@v0
47
48
with :
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ dist/brew/values.cache
41
41
dist /brew /vmatch.rb
42
42
dist /brew /vmatch.template.rb
43
43
44
- # Brew bottles
44
+ # Binary archives
45
45
* .tar.gz
46
46
47
47
# Packaging happens under this directory
Original file line number Diff line number Diff line change @@ -25,10 +25,8 @@ if [[ "$quick_mode" == true ]] && [[ -f "$cache_file" ]]; then
25
25
cat " $cache_file "
26
26
else
27
27
echo " Generating fresh values"
28
- rm -rf ../../vmatch-* 64.tar.gz
29
28
gh release download " $TAG " --pattern ' vmatch-*64.tar.gz'
30
29
mv vmatch-* 64.tar.gz ../../
31
-
32
30
source values.bash | tee " $cache_file "
33
31
fi
34
32
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
+ # testing
3
4
class ${ class_name } < Formula
4
5
desc '${description}'
5
6
homepage '${homepage}'
You can’t perform that action at this time.
0 commit comments