.github/workflows/manually_release.yml #6
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: | |
workflow_dispatch: | |
env: | |
PYTHONIOENCODING: utf-8 | |
PYTHONLEGACYWINDOWSSTDIO: utf-8 | |
jobs: | |
manual-release: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [windows-2019] | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout git repo | |
uses: actions/checkout@v4 | |
with: | |
path: main | |
submodules: 'true' | |
- name: Build zips & 7zs | |
run: | | |
echo "Running manual release" | |
cd main | |
git rev-parse HEAD | |
python compiler/scripts/manual_release.py | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: | | |
main/compiler/comp_output_test/yaksha_v*.7z | |
main/compiler/comp_output_test/yaksha_v*.tar.gz | |
main/compiler/comp_output_test/yaksha_v*.zip | |
draft: 'true' | |
fail_on_unmatched_files: 'false' | |
manual-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@v4 | |
with: | |
path: main | |
submodules: 'true' | |
- name: Build zips & 7zs | |
run: | | |
echo "Running manual release" | |
cd main | |
pwd | |
ls -ltra | |
git rev-parse HEAD | |
python compiler/scripts/manual_release.py | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: | | |
main/compiler/comp_output_test/yaksha_v*.7z | |
main/compiler/comp_output_test/yaksha_v*.tar.gz | |
main/compiler/comp_output_test/yaksha_v*.zip | |
draft: 'true' | |
fail_on_unmatched_files: 'false' |