Skip to content

Commit

Permalink
feat(ci): adds ability to automatically build and attach a new binary.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaymeh committed Aug 31, 2022
1 parent d84e5b7 commit 9fcdba7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ jobs:
- name: Get Release Notes
run: ./changelog-checker > ${{ github.workspace }}-CHANGELOG.txt

- name: Build Binary
run: php ./changelog-checker app:build ${{github.ref_name}}

- name: Release
uses: softprops/action-gh-release@v1
with:
Expand All @@ -28,3 +31,5 @@ jobs:
body_path: ${{ github.workspace }}-CHANGELOG.txt
generate_release_notes: false
token: ${{ secrets.MY_PAT }}
files:
builds/${{github.ref_name}}

0 comments on commit 9fcdba7

Please sign in to comment.