Skip to content

Commit

Permalink
yaml -> yml
Browse files Browse the repository at this point in the history
  • Loading branch information
martinkilbinger committed Jul 14, 2023
1 parent 2c08713 commit a947a9a
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Create Release

on:
push:
tags:
- '*'

jobs:
create_release:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.x

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build twine
- name: Build and upload package
run: |
python -m build --sdist --wheel
twine upload dist/*

0 comments on commit a947a9a

Please sign in to comment.