2022-07-22 15:24:11 -04:00
|
|
|
name: Release
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2022-07-22 15:28:13 -04:00
|
|
|
- uses: actions/setup-python@v4
|
|
|
|
with:
|
|
|
|
python-version: '3.10.x'
|
2022-07-22 15:24:11 -04:00
|
|
|
- uses: snok/install-poetry@v1
|
|
|
|
with:
|
|
|
|
virtualenvs-create: true
|
|
|
|
- name: Install Dependencies
|
|
|
|
run: poetry install
|
2022-07-22 22:20:07 -04:00
|
|
|
# https://stackoverflow.com/a/64195658
|
|
|
|
- name: Add SHORT_SHA env property with commit short sha
|
2022-07-23 00:43:38 -04:00
|
|
|
run: echo "SHORT_SHA=`echo ${GITHUB_SHA} | cut -c1-7`" >> $GITHUB_ENV
|
|
|
|
- name: Inject version
|
|
|
|
run: |
|
|
|
|
touch src/__version__.py
|
|
|
|
echo "__version__ = '${{ env.SHORT_SHA }}'" >> src/__version__.py
|
|
|
|
- name: build the sucker
|
|
|
|
run: make build
|
2022-07-22 15:24:11 -04:00
|
|
|
- uses: ncipollo/release-action@v1
|
|
|
|
with:
|
|
|
|
artifacts: "utils"
|
|
|
|
body: "It's releasin' time"
|
|
|
|
generateReleaseNotes: true
|
2022-07-22 22:39:03 -04:00
|
|
|
tag: ${{ env.SHORT_SHA }}
|
2022-07-22 21:51:16 -04:00
|
|
|
commit: master
|
2022-07-22 21:26:42 -04:00
|
|
|
token: ${{ secrets.PAT }}
|