And again #5
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
name: release | ||
on: | ||
push: | ||
branches: | ||
- main | ||
tags: | ||
- '*' | ||
jobs: | ||
build: | ||
name: Release ${{ matrix.os }} PyInstaller | ||
runs-on: ${{ matrix.os }} | ||
permissions: | ||
content: write | ||
strategy: | ||
matrix: | ||
os: | ||
- windows-latest | ||
steps: | ||
- name: Check out repo | ||
uses: actions/checkout@v4 | ||
- name: Setup Pixi | ||
uses: prefix-dev/[email protected] | ||
- name: Build with PyInstaller | ||
run: pixi run build-backend | ||
- name: Create ZIP Archive | ||
run: pixi run create-archive | ||
- name: Release | ||
run: gh release create ${{github.ref_name}} dist/gistim-Windows.zip | ||
env: | ||
GITHUB_TOKEN: ${{ github.TOKEN }} | ||