Bump version 0.1.0alpha.1 and update CHANGELOG.md #2
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
# This Github workflow will create a new release when a tag is pushed, | |
# then it will build the binary and it will add it to the release assets | |
# in a tar.gz archive along with other components. | |
# | |
# Reference: | |
# https://github.com/BurntSushi/ripgrep/blob/master/.github/workflows/release.yml | |
# https://github.com/rhino-linux/rhino-setup/blob/master/.github/workflows/package.yml | |
name: release | |
on: | |
push: | |
tags: | |
- "v[0-9]+.[0-9]+.[0-9]+*" | |
jobs: | |
create-release: | |
name: create-release | |
runs-on: ubuntu-latest | |
outputs: | |
upload_url: ${{ steps.release.outputs.upload_url }} | |
version: ${{ github.ref_name }} | |
steps: | |
- name: Create Github Release | |
id: release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref_name }} | |
release_name: ${{ github.ref_name }} | |
build-release: | |
name: build-release | |
needs: ["create-release"] | |
runs-on: ${{ matrix.os }} | |
env: | |
TARGET_DIR: ./target | |
# Emit backtraces on panics. | |
RUST_BACKTRACE: 1 | |
strategy: | |
matrix: | |
build: [linux] | |
include: | |
- build: linux | |
os: ubuntu-latest | |
rust: stable | |
target: x86_64-unknown-linux-musl | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Install Rust Toolchain | |
uses: dtolnay/rust-toolchain@v1 | |
with: | |
toolchain: ${{ matrix.rust }} | |
target: ${{ matrix.target }} | |
- name: Install System Deps | |
shell: bash | |
run: sudo apt install libdbus-1-dev desktop-file-utils meson -y | |
- name: Setup | |
run: meson build | |
- name: Build | |
run: meson install -C build --destdir "builds/${{ matrix.target }}" | |
- name: Create Archive | |
shell: bash | |
run: | | |
archive="ianny-${{ needs.create-release.outputs.version }}-${{ matrix.target }}.tar.gz" | |
tar -C "build/builds/" --create "${{ matrix.target }}/" --gzip --file "$archive" | |
echo "ASSET=$archive" >> $GITHUB_ENV | |
- name: Upload Release Archive | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ needs.create-release.outputs.upload_url }} | |
asset_path: ${{ env.ASSET }} | |
asset_name: ${{ env.ASSET }} | |
asset_content_type: application/octet-stream |