Skip to content

Commit

Permalink
ci(compile): first release
Browse files Browse the repository at this point in the history
  • Loading branch information
Mte90 committed Mar 15, 2024
1 parent bea315f commit 9a739f9
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Release on Tag
on:
push:
branches:
- main
workflow_dispatch: {}
tags:
- 'v*' # Push events to matching v*, i.e. v1.0
- 'nightly-*'
Expand Down Expand Up @@ -28,9 +31,14 @@ jobs:
working-directory: ./yad/build
run: |
../configure --enable-standalone && make -j16
- name: Downloadpackelf tool
run: |
git clone https://github.com/oufm/packelf
./packelf/packelf.sh ./yad/build/src/yad ./yad
ls -l
- name: Package project
run: |
zip --junk-paths yad ./yad/build/src/yad
zip --junk-paths yad ./yad
- name: Create Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags')
Expand Down
5 changes: 5 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Yad Static build

This repository is just a CI that publish a GH release with the latest [yad](https://github.com/v1cont/yad) version compiled in a static binary with everything, so it is self-contained.

Right now doesn't compile with webgtk and gtk-spell support to keep lightweight.

0 comments on commit 9a739f9

Please sign in to comment.