Workflow file for this run
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
name: Build and upload binaries to release | ||
on: | ||
push: | ||
tags: | ||
- v[0-9].* | ||
jobs: | ||
build-for-release: | ||
name: Build and release | ||
strategy: | ||
matrix: | ||
job: | ||
- target: aarch64-unknown-linux-gnu | ||
os: ubuntu-latest | ||
- target: x86_64-unknown-linux-gnu | ||
os: ubuntu-latest | ||
- target: aarch64-apple-darwin | ||
os: macos-latest | ||
- target: x86_64-apple-darwin | ||
os: macos-latest | ||
- target: x86_64-pc-windows-msvc | ||
os: windows-latest | ||
runs-on: ${{ matrix.job.os }} | ||
env: | ||
Check failure on line 23 in .github/workflows/release.yml GitHub Actions / Build and upload binaries to releaseInvalid workflow file
|
||
CARGO_TARGET_DIR: target | ||
LEPTOS_BIN_TARGET_TRIPLE: ${{ matrix.job.target }} | ||
steps: | ||
- name: Build the binaries | ||
uses: ./.github/workflows/build.yml | ||
with: | ||
target: ${{ matrix.job.target }} | ||
os: ${{ matrix.job.os }} | ||
- name: Initialize workflow variables | ||
id: vars | ||
shell: bash | ||
run: | | ||
TARGET=${{ matrix.job.target }} | ||
case $TARGET in | ||
*-pc-windows-*) BINARY="file-share.exe" ;; | ||
*) BINARY="file-share" ;; | ||
esac; | ||
echo "BINARY=${BINARY}" | ||
echo "BINARY=${BINARY}" >> "$GITHUB_ENV" | ||
case $TARGET in | ||
*-linux-*) ARCHIVE="file-share_$TARGET.tar.gz" ;; | ||
*) ARCHIVE="file-share_$TARGET.zip" ;; | ||
esac; | ||
echo "ARCHIVE=${ARCHIVE}" | ||
echo "ARCHIVE=${ARCHIVE}" >> "$GITHUB_ENV" | ||
RELEASE="target/${{ matrix.job.target }}/release" | ||
echo "RELEASE=${RELEASE}" | ||
echo "RELEASE=${RELEASE}" >> "$GITHUB_ENV" | ||
- name: Create archive | ||
run: tar caf ${{ env.ARCHIVE }} -C ${{ env.RELEASE }} ${{ env.BINARY }} | ||
- name: Upload binary to release | ||
uses: svenstaro/upload-release-action@2.7.0 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: ${{ env.ARCHIVE }} | ||
asset_name: ${{ env.ARCHIVE }} | ||
tag: ${{ github.ref }} |