Skip to content

v0.1.3

v0.1.3 #10

Workflow file for this run

name: Build and release
on:
push:
branches:
- master
tags:
- v*
jobs:
build-linux:
runs-on: ubuntu-22.04
container: rust:1.70.0
steps:
- name: Checkout
uses: actions/[email protected]
with:
persist-credentials: false
- name: Bootstrap
run: apt-get update -y && apt-get install -y libdbus-1-dev libasound2-dev
- name: Set Last.fm key
shell: bash
env:
LASTFM_KEY: ${{ secrets.LASTFM_KEY }}
run: echo "$LASTFM_KEY" > lastfm.key
- name: Build
run: cargo build --release -vv
- name: Archive
run: tar -cf- -C target/release konik | xz -c9e - > konik-linux.tar.xz
- name: Save
uses: actions/[email protected]
with:
name: release-linux
path: "*.tar.xz"
release:
if: startsWith(github.ref, 'refs/tags/')
needs:
- build-linux
runs-on: ubuntu-22.04
steps:
- name: Version
id: version
run: echo "version=${GITHUB_REF#refs/tags/}" >> "$GITHUB_OUTPUT"
- name: Checkout
uses: actions/[email protected]
with:
persist-credentials: false
- name: Notes
run: grep -Pzom1 "(?s)\n[##\s]*${{ steps.version.outputs.version }}.*?\n+.*?\K.*?(\n\n|$)" CHANGELOG.md | sed 's/[^[:print:]]//g' > RELEASE.md
- name: Download
uses: actions/[email protected]
with:
path: artifacts
- name: Rename
run: |
mv artifacts/release-linux/konik-linux.tar.xz artifacts/release-linux/konik-linux-${{ steps.version.outputs.version }}.tar.xz
- name: Release
uses: softprops/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: |
artifacts/release-linux/*.tar.xz
body_path: RELEASE.md