Skip to content

fix: enable globbing #4

fix: enable globbing

fix: enable globbing #4

Workflow file for this run

---
name: Build artifacts
on:
push:
tags:
- '*'
jobs:
build:
permissions:
contents: write
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- windows-latest
- ubuntu-latest
- macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.11
- run: pip install -r dev.txt
- run: make
- run: ./dist/digipy version
- uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: dist/*
asset_name: ${{ matrix.os }}-binary
tag: ${{ github.ref }}
file_glob: true