utils/.github/workflows/build_and_release.yml
2022-07-23 15:26:10 -04:00

38 lines
946 B
YAML

name: Release
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
with:
python-version: '3.10.x'
- name: Install Env
# this should be all we need because shiv will download the deps itself
run: |
pip install --upgrade pip
pip install shiv
pip install poetry
- name: Add CURRENT_TIME env property
run: echo "CURRENT_TIME=$(date -Iseconds)" >> $GITHUB_ENV
- name: Build the sucker
run: |
sed -i -e "s/?????/v${{ env.CURRENT_TIME }}/g" src/__init__.py
make build
- uses: ncipollo/release-action@v1
with:
artifacts: "utils"
body: "It's releasin' time"
generateReleaseNotes: false
tag: v${{ env.CURRENT_TIME }}
commit: master
token: ${{ secrets.PAT }}