Skip to content

Commit

Permalink
updated workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
coswat committed Sep 28, 2023
1 parent 678c67e commit 10d02e3
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:
jobs:
build-and-upload:
name: Build and upload
runs-on: $\{\{ matrix.os \}\}
runs-on: ${{ matrix.os }}

strategy:
matrix:
Expand All @@ -21,44 +21,48 @@ jobs:
os: ubuntu-latest
target: x86_64-unknown-linux-musl

- build: macos
os: macos-latest
target: x86_64-apple-darwin

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Get the release version from the tag
shell: bash
run: echo "VERSION=$\{GITHUB_REF#refs/tags/\}" >> $GITHUB_ENV
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV

- name: Install Rust
# Or @nightly if you want
uses: dtolnay/rust-toolchain@stable
# Arguments to pass in
with:
# Make Rust compile to our target (defined in the matrix)
targets: $\{\{ matrix.target \}\}
targets: ${{ matrix.target }}

- name: Build
uses: actions-rs/cargo@v1
with:
use-cross: true
command: build
args: --verbose --release --target $\{\{ matrix.target \}\}
args: --verbose --release --target ${{ matrix.target }}

- name: Build archive
shell: bash
run: |
# Replace with the name of your binary
binary_name="acode-cli"
binary_name="<BINARY_NAME>"
dirname="$binary_name-$\{\{ env.VERSION \}\}-$\{\{ matrix.target \}\}"
dirname="$binary_name-${{ env.VERSION }}-${{ matrix.target }}"
mkdir "$dirname"
if [ "$\{\{ matrix.os \}\}" = "windows-latest" ]; then
mv "target/$\{\{ matrix.target \}\}/release/$binary_name.exe" "$dirname"
if [ "${{ matrix.os }}" = "windows-latest" ]; then
mv "target/${{ matrix.target }}/release/$binary_name.exe" "$dirname"
else
mv "target/$\{\{ matrix.target \}\}/release/$binary_name" "$dirname"
mv "target/${{ matrix.target }}/release/$binary_name" "$dirname"
fi
if [ "$\{\{ matrix.os \}\}" = "windows-latest" ]; then
if [ "${{ matrix.os }}" = "windows-latest" ]; then
7z a "$dirname.zip" "$dirname"
echo "ASSET=$dirname.zip" >> $GITHUB_ENV
else
Expand All @@ -70,4 +74,4 @@ jobs:
uses: softprops/action-gh-release@v1
with:
files: |
$\{\{ env.ASSET \}\}
${{ env.ASSET }}

0 comments on commit 10d02e3

Please sign in to comment.