79 lines
2.5 KiB
YAML
79 lines
2.5 KiB
YAML
name: upload
|
|
|
|
on:
|
|
push:
|
|
release:
|
|
types: [created]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build-release:
|
|
name: build-release
|
|
strategy:
|
|
matrix:
|
|
build: [linux-x86_64, macos-x86_64, windows-x86_64-gnu, windows-x86_64-msvc]
|
|
include:
|
|
- build: linux-x86_64
|
|
os: ubuntu-latest
|
|
rust: nightly
|
|
target: x86_64-unknown-linux-gnu
|
|
- build: macos-x86_64
|
|
os: macos-latest
|
|
rust: nightly
|
|
target: x86_64-apple-darwin
|
|
- build: windows-x86_64-gnu
|
|
os: windows-latest
|
|
rust: nightly-x86_64-gnu
|
|
target: x86_64-pc-windows-gnu
|
|
- build: windows-x86_64-msvc
|
|
os: windows-latest
|
|
rust: nightly-x86_64-msvc
|
|
target: x86_64-pc-windows-msvc
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
# Run build
|
|
- name: install rustup
|
|
run: |
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > rustup-init.sh
|
|
sh rustup-init.sh -y --default-toolchain none
|
|
rustup target add ${{ matrix.target }}
|
|
|
|
- name: Add mingw64 to path for x86_64-gnu
|
|
run: echo "C:\msys64\mingw64\bin" >> $GITHUB_PATH
|
|
if: matrix.rust == 'nightly-x86_64-gnu'
|
|
shell: bash
|
|
|
|
- name: Build release binaries
|
|
run: cargo build --release
|
|
|
|
- name: Build archive
|
|
shell: bash
|
|
run: |
|
|
staging="rustfmt_${{ matrix.build }}_${{ github.event.release.tag_name }}"
|
|
mkdir -p "$staging"
|
|
|
|
cp {README.md,Configurations.md,CHANGELOG.md,LICENSE-MIT,LICENSE-APACHE} "$staging/"
|
|
|
|
if [ "${{ matrix.os }}" = "windows-latest" ]; then
|
|
cp target/release/{rustfmt.exe,cargo-fmt.exe,rustfmt-format-diff.exe,git-rustfmt.exe} "$staging/"
|
|
7z a "$staging.zip" "$staging"
|
|
echo "ASSET=$staging.zip" >> $GITHUB_ENV
|
|
else
|
|
cp target/release/{rustfmt,cargo-fmt,rustfmt-format-diff,git-rustfmt} "$staging/"
|
|
tar czf "$staging.tar.gz" "$staging"
|
|
echo "ASSET=$staging.tar.gz" >> $GITHUB_ENV
|
|
fi
|
|
|
|
- name: Upload Release Asset
|
|
if: github.event_name == 'release'
|
|
uses: actions/upload-release-asset@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
upload_url: ${{ github.event.release.upload_url }}
|
|
asset_path: ${{ env.ASSET }}
|
|
asset_name: ${{ env.ASSET }}
|
|
asset_content_type: application/octet-stream
|