Skip to content

Merge pull request #151 from hartwork/cargo-update #449

Merge pull request #151 from hartwork/cargo-update

Merge pull request #151 from hartwork/cargo-update #449

Workflow file for this run

# This file is part of the rust-for-it project.
#
# Copyright (c) 2023 Sebastian Pipping <[email protected]>
# SPDX-License-Identifier: MIT
name: Build release binaries
on:
pull_request:
push:
schedule:
- cron: '0 16 * * 5' # Every Friday 4pm
workflow_dispatch:
defaults:
run:
shell: bash
jobs:
release_binaries:
name: Build release binaries
strategy:
fail-fast: false
matrix:
runs-on: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.runs-on }}
steps:
- name: Check out
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Build
run: |-
set -x
rustc --version --verbose
cargo build --release
mv -v target/release/rust-for-it* .
rm rust-for-it.d # to not go into artifact zip file
- name: Install UPX (macOS)
if: runner.os == 'macOS'
run: |-
brew install upx
- name: Compress binary using UPX (Linux or macOS)
if: runner.os == 'Linux' || runner.os == 'macOS'
run: |-
upx --best --no-lzma ./rust-for-it
- name: Store binary
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
with:
name: rust-for-it_${{ matrix.runs-on }}_${{ github.sha }}
path: |
LICENSE
rust-for-it*
if-no-files-found: error