Skip to content

Package Aurora Echo

Package Aurora Echo #6

Workflow file for this run

name: Package Aurora Echo
on:
push:
branches:
- master
tags:
- v*
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Packaging
run: |
pip install pipenv
make release
- uses: actions/upload-artifact@v3
with:
name: aurora-echo
path: dist/
- if: startsWith(github.ref, 'refs/tags/v')
uses: softprops/action-gh-release@v1
with:
files: |
dist/*