Skip to content

release: v0.15.0

release: v0.15.0 #15

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
submodules: true
- name: Install mach
env:
GH_TOKEN: ${{ github.token }}
run: |
mkdir -p /tmp/machdl
gh release download --repo octalide/mach \
--pattern 'mach-*-x86_64-linux.tar.gz' --dir /tmp/machdl --clobber
tar -xzf /tmp/machdl/mach-*-x86_64-linux.tar.gz -C /tmp/machdl
cp /tmp/machdl/mach /usr/local/bin/mach
chmod +x /usr/local/bin/mach
mach info
- name: Build
run: mach build .
- name: Create release
uses: softprops/action-gh-release@v3