-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
44 additions
and
43 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 |
---|---|---|
@@ -1,43 +1,44 @@ | ||
name: Release | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
build: | ||
name: Build binary | ||
runs-on: ubuntu-latest | ||
|
||
container: | ||
image: archlinux:base-devel | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install dependencies | ||
run: | | ||
sudo pacman -Syyuu --noconfirm --needed clang cmake rust avahi cuda ffmpeg gcc-libs glibc libpulse nvidia-utils openssl opus | ||
- name: Build | ||
run: cargo build --release | ||
|
||
- name: Compress | ||
run: | | ||
mkdir "$RUNNER_TEMP/$GITHUB_REF_NAME" | ||
cp -r ./target/release/moonshine README.md "$RUNNER_TEMP/$GITHUB_REF_NAME" | ||
cp LICENSE "$RUNNER_TEMP/$GITHUB_REF_NAME/LICENSE" | ||
tar caf "./moonshine-$GITHUB_REF_NAME-linux-amd64.tar.xz" -C "$RUNNER_TEMP" "$GITHUB_REF_NAME" | ||
- name: Release | ||
uses: softprops/action-gh-release@v2 | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: | ||
files: "./moonshine-*.tar.xz" | ||
# Disabled for now, until the dependency on ffmpeg is removed this isn't that useful. | ||
# name: Release | ||
|
||
# on: | ||
# release: | ||
# types: [published] | ||
|
||
# env: | ||
# CARGO_TERM_COLOR: always | ||
|
||
# permissions: | ||
# contents: write | ||
|
||
# jobs: | ||
# build: | ||
# name: Build binary | ||
# runs-on: ubuntu-latest | ||
|
||
# container: | ||
# image: archlinux:base-devel | ||
|
||
# steps: | ||
# - name: Checkout code | ||
# uses: actions/checkout@v3 | ||
|
||
# - name: Install dependencies | ||
# run: | | ||
# sudo pacman -Syyuu --noconfirm --needed clang cmake rust avahi cuda ffmpeg gcc-libs glibc libpulse nvidia-utils openssl opus | ||
|
||
# - name: Build | ||
# run: cargo build --release | ||
|
||
# - name: Compress | ||
# run: | | ||
# mkdir "$RUNNER_TEMP/$GITHUB_REF_NAME" | ||
# cp -r ./target/release/moonshine README.md "$RUNNER_TEMP/$GITHUB_REF_NAME" | ||
# cp LICENSE "$RUNNER_TEMP/$GITHUB_REF_NAME/LICENSE" | ||
# tar caf "./moonshine-$GITHUB_REF_NAME-linux-amd64.tar.xz" -C "$RUNNER_TEMP" "$GITHUB_REF_NAME" | ||
|
||
# - name: Release | ||
# uses: softprops/action-gh-release@v2 | ||
# if: startsWith(github.ref, 'refs/tags/') | ||
# with: | ||
# files: "./moonshine-*.tar.xz" |