mirror of
https://github.com/nikdoof/ohayodash.git
synced 2025-12-13 18:12:17 +00:00
27 lines
595 B
YAML
27 lines
595 B
YAML
---
|
|
name: Release
|
|
on:
|
|
push:
|
|
tags:
|
|
- "[0-9]+.[0-9]+.[0-9]+"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
|
|
|
|
- uses: actions/setup-python@v4
|
|
- run: pip install -r requirements-dev.txt
|
|
|
|
- name: Build Assets
|
|
run: python setup.py sdist bdist_wheel
|
|
|
|
- name: Release
|
|
uses: softprops/action-gh-release@v1
|
|
with:
|
|
name: "Version ${{ github.ref_name }}"
|
|
generate_release_notes: true
|
|
files: |
|
|
dist/* |