chore: Release cargo-temp version 0.2.21 #56
Workflow file for this run
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
name: Release | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- windows-latest | |
- macos-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v3 | |
- name: Update rustup | |
run: rustup update | |
- name: Build release | |
run: cargo build --release | |
- if: matrix.os == 'ubuntu-latest' | |
run: strip target/release/cargo-temp | |
- uses: actions/upload-artifact@v3 | |
if: matrix.os != 'windows-latest' | |
with: | |
name: build-${{ matrix.os }} | |
path: target/release/cargo-temp | |
- uses: actions/upload-artifact@v3 | |
if: matrix.os == 'windows-latest' | |
with: | |
name: build-${{ matrix.os }} | |
path: target/release/cargo-temp.exe | |
- name: Build release all-features (${{ matrix.os }}) | |
run: cargo build --release --all-features | |
- if: matrix.os == 'ubuntu-latest' | |
run: strip target/release/cargo-temp | |
- uses: actions/upload-artifact@v3 | |
if: matrix.os != 'windows-latest' | |
with: | |
name: build-${{ matrix.os }}-all-features | |
path: target/release/cargo-temp | |
- uses: actions/upload-artifact@v3 | |
if: matrix.os == 'windows-latest' | |
with: | |
name: build-${{ matrix.os }}-all-features | |
path: target/release/cargo-temp.exe | |
release: | |
needs: [ build ] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get the version | |
id: get_version | |
run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/} | |
- uses: actions/download-artifact@v3 | |
with: | |
name: build-ubuntu-latest | |
path: build-ubuntu-latest | |
- run: mv build-ubuntu-latest/cargo-temp build-ubuntu-latest/cargo-temp-${{ steps.get_version.outputs.VERSION }}-linux-x86_64 | |
- uses: actions/download-artifact@v3 | |
with: | |
name: build-ubuntu-latest-all-features | |
path: build-ubuntu-latest-all-features | |
- run: mv build-ubuntu-latest-all-features/cargo-temp build-ubuntu-latest/cargo-temp-all-features-${{ steps.get_version.outputs.VERSION }}-linux-x86_64 | |
- uses: actions/download-artifact@v3 | |
with: | |
name: build-windows-latest | |
path: build-windows-latest | |
- run: mv build-windows-latest/cargo-temp.exe build-windows-latest/cargo-temp-${{ steps.get_version.outputs.VERSION }}-windows-x86_64.exe | |
- uses: actions/download-artifact@v3 | |
with: | |
name: build-windows-latest-all-features | |
path: build-windows-latest-all-features | |
- run: mv build-windows-latest-all-features/cargo-temp.exe build-windows-latest/cargo-temp-all-features-${{ steps.get_version.outputs.VERSION }}-windows-x86_64.exe | |
- uses: actions/download-artifact@v3 | |
with: | |
name: build-macos-latest | |
path: build-macos-latest | |
- run: mv build-macos-latest/cargo-temp build-macos-latest/cargo-temp-${{ steps.get_version.outputs.VERSION }}-macos-x86_64 | |
- uses: actions/download-artifact@v3 | |
with: | |
name: build-macos-latest-all-features | |
path: build-macos-latest-all-features | |
- run: mv build-macos-latest-all-features/cargo-temp build-macos-latest/cargo-temp-all-features-${{ steps.get_version.outputs.VERSION }}-macos-x86_64 | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
files: | | |
build-ubuntu-latest/* | |
build-macos-latest/* | |
build-windows-latest/* |