Skip to content

fix: problem # search #1

fix: problem # search

fix: problem # search #1

Workflow file for this run

name: Release Alfred Workflow
on:
push:
tags:
- 'v*' # Trigger on tags starting with 'v', e.g., v1.0.0
jobs:
build:
runs-on: macos-latest # Use macOS runner for Alfred compatibility
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Build workflow
run: |
chmod +x build.sh
./build.sh
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
with:
files: alfred-leetcode.alfredworkflow
name: Release ${{ github.ref_name }}
draft: false
prerelease: false
generate_release_notes: true