Adds zini restart subcommand (#55) #14
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
on: | |
push: | |
# Sequence of patterns matched against refs/tags | |
tags: | |
- "v*" # Push events to matching v*, i.e. v1.0, v20.15.10 | |
name: Create Release | |
jobs: | |
build: | |
name: Releasing zinit | |
# we use 18.04 to be compatible with libc version on zos | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
name: Install toolchain | |
with: | |
toolchain: stable | |
target: x86_64-unknown-linux-musl | |
- uses: actions-rs/cargo@v1 | |
name: Build release | |
with: | |
command: build | |
args: --release --target=x86_64-unknown-linux-musl | |
- name: Strip | |
run: | | |
strip target/x86_64-unknown-linux-musl/release/zinit | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: Release ${{ github.ref }} | |
draft: false | |
prerelease: false | |
- name: Upload Release Asset | |
id: upload-release-asset | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: target/x86_64-unknown-linux-musl/release/zinit | |
asset_name: zinit | |
asset_content_type: application/x-pie-executable |