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

Fix release pipeline #30

Fix release pipeline

Fix release pipeline #30

Workflow file for this run

name: Release 📦
on:
push:
tags:
- 'v*.*.*'
jobs:
build:
strategy:
matrix:
os: [macOS-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Setup Rust
uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable
- name: Checkout Repository
uses: actions/checkout@v3
# - name: Setup
# if: matrix.os == 'ubuntu-latest'
# run: |
# rustup target add aarch64-unknown-linux-gnu
# rustup target add x86_64-unknown-linux-musl
# sudo apt-get update && sudo apt-get install -y qemu-user-static musl-tools
# - name: Build for Linux
# if: matrix.os == 'ubuntu-latest'
# run: |
# make release-linux
- name: Build for macOS
if: matrix.os == 'macOS-latest'
run: make release-mac
- name: Release
uses: softprops/action-gh-release@v1
with:
body: '[Changelog](https://github.com/containerscrew/aws-sso-auth/blob/main/CHANGELOG.md)'
files: "*.zip\n*.rpm"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}