Skip to content

ci: bump to 0.0.7

ci: bump to 0.0.7 #9

Workflow file for this run

on:
push:
tags:
- 'v*'
workflow_dispatch:
env:
PYTHONIOENCODING: utf-8
PYTHONLEGACYWINDOWSSTDIO: utf-8
jobs:
release-macos:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-11]
permissions:
contents: write
steps:
- name: Install software
run: brew install cmake ninja gcc p7zip
- name: Checkout git repo
uses: actions/checkout@v2
with:
path: main
submodules: 'true'
- name: Build zips & 7zs
run: python main/compiler/scripts/release.py
- name: Release
uses: softprops/action-gh-release@v1
with:
files: main/compiler/comp_output_test/yaksha_v*.7z
draft: 'true'
fail_on_unmatched_files: 'false'