-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update tarball workflow to use meson dist
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,19 +21,19 @@ jobs: | |
libcap2-dev libglib2.0-dev libgtk-3-dev libice-dev \ | ||
libjack-dev liblrdf0-dev libmad0-dev libpango1.0-dev \ | ||
libpulse-dev libsm-dev libvorbis-dev libx11-dev libxext-dev \ | ||
libxi-dev libxml2-dev mpg321 sox vorbis-tools yelp-tools zlib1g-dev | ||
libxi-dev libxml2-dev mpg321 sox vorbis-tools yelp-tools zlib1g-dev \ | ||
meson ninja-build | ||
- name: Tag release | ||
uses: mathieudutour/[email protected] | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
custom_tag: ${{ inputs.relver }} | ||
- name: Build tarball | ||
run: | | ||
./autogen.sh | ||
./configure | ||
make tarballs | ||
meson setup build | ||
meson dist --no-tests -C build | ||
- name: Collect artifacts | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: tarballs | ||
path: terminatorX-*.tar.* | ||
path: build/meson-dist/terminatorX-*.tar.* |