File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 23
23
run : |
24
24
if [[ ${{ inputs.ghc }} =~ ^(9.6.6|9.8.2|9.10.1)$ ]]
25
25
then
26
- wget -q https://github.com/Kleidukos/print-api/releases/download/v${{ inputs.version }}/print-api-${{ inputs.version }}-Linux-static-${{ inputs.ghc }}-x86_64.tar.gz
27
- tar -xzvf print-api-${{ inputs.version}}-Linux-static-x86_64.tar.gz
26
+ ARCHIVE=print-api-${{ inputs.version }}-Linux-static-${{ inputs.ghc }}-x86_64.tar.gz
27
+ wget -q https://github.com/Kleidukos/print-api/releases/download/v${{ inputs.version }}/$ARCHIVE
28
+ tar -xzvf $ARCHIVE
28
29
chmod +x print-api
29
30
./print-api --package-name ${{ inputs.package-name }} > actual-interface.txt
30
31
diff ${{ inputs.expected-interface }} actual-interface.txt
You can’t perform that action at this time.
0 commit comments