Skip to content

Commit

Permalink
Merge pull request #2 from 4LT/Add-package-release-workflow
Browse files Browse the repository at this point in the history
Fix action
  • Loading branch information
4LT authored Jul 1, 2022
2 parents 41a0d0c + 18142fb commit 6b61efd
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Release Package
on:
release:
branches: [ "master" ]
types: [ published ]

jobs:
package:
Expand All @@ -11,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 6b61efd

Please sign in to comment.