Skip to content
This repository has been archived by the owner on May 19, 2024. It is now read-only.

Commit

Permalink
Test whether build is working
Browse files Browse the repository at this point in the history
  • Loading branch information
wanjohiryan committed Sep 12, 2023
1 parent 3df4fc2 commit 8167dc4
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions .github/workflows/release-binary.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
name: Release

on:
workflow_dispatch:
# workflow_dispatch:
push:



Expand Down Expand Up @@ -62,8 +63,18 @@ jobs:
- name: Build
run: |
cargo build --target ${{matrix.settings.targets}} --manifest-path ./moq-pub/Cargo.toml --release
- name: Publish Artifacts

- name: Publish artifacts (Linux - AppImage)
if: ${{ matrix.settings.host == 'ubuntu-20.04' }}
run: |
ls -l ./target/${{matrix.settings.targets}}/release/
ls -l target/${{matrix.settings.targets}}/release/
- name: Publish artifacts (Windows - msi)
if: ${{ matrix.settings.host == 'windows-latest' }}
run: |
dir "target/${{matrix.settings.targets}}/release"
- name: Publish artifacts (macOS - dmg)
if: ${{ matrix.settings.host == 'macos-latest' }}
run: |
ls -l target/${{matrix.settings.targets}}/release

0 comments on commit 8167dc4

Please sign in to comment.