Skip to content

Commit

Permalink
Add step to download fteqcc
Browse files Browse the repository at this point in the history
  • Loading branch information
4LT committed Jul 1, 2022
1 parent 77704f3 commit 18142fb
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,16 @@ jobs:

steps:
- uses: actions/checkout@v3

- name: setup fteqcc
run: |
wget https://www.fteqcc.org/dl/fteqcc_linux64.zip
unzip fteqcc_linux64.zip
mkdir -p bin
mv fteqcc64 bin/fteqcc
- name: build package
run: make package
run: PATH=./bin:$PATH make package

- name: upload
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 18142fb

Please sign in to comment.