Skip to content

Fix exercise naming and open browser on download #20

Fix exercise naming and open browser on download

Fix exercise naming and open browser on download #20

Workflow file for this run

name: Build and release Git-Mastery CLI for Linux
on:
workflow_dispatch:
push:
tags:
- "v*.*.*"
jobs:
build-and-release:
permissions:
contents: write
pull-requests: write
packages: read
issues: read
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Build binary
run: |
pyinstaller --onefile --name gitmastery-linux main.py
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
files: dist/gitmastery-linux
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}