Skip to content

Merge pull request #11 from kayvane1/add-gh-actions #1

Merge pull request #11 from kayvane1/add-gh-actions

Merge pull request #11 from kayvane1/add-gh-actions #1

Workflow file for this run

---
name: Release
on:
push:
branches:
- production
paths:
- "!**"
- CHANGELOG.md
- pyproject.toml
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Import Actions
uses: actions/checkout@v3
with:
repository: util-co/util-actions
path: ./.util
ref: refs/tags/v5
token: "${{ secrets.PERSONAL_ACCESS_TOKEN }}"
- name: Set up
uses: ./.util/actions/poetry/setup
- name: Release
uses: ./.util/actions/poetry/release
with:
github_token: "${{ secrets.PERSONAL_ACCESS_TOKEN }}"
build_artifacts: true