Merge pull request #159 from hartwork/dependabot/github_actions/actio… #474
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
# This file is part of the rust-for-it project. | |
# | |
# Copyright (c) 2023 Sebastian Pipping <sebastian@pipping.org> | |
# 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@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 | |
with: | |
name: rust-for-it_${{ matrix.runs-on }}_${{ github.sha }} | |
path: | | |
LICENSE | |
rust-for-it* | |
if-no-files-found: error |