mirror of
https://github.com/Hopiu/djLint.git
synced 2026-03-16 21:40:24 +00:00
47 lines
1.3 KiB
YAML
47 lines
1.3 KiB
YAML
# This workflow will upload a Python Package using Twine when a release is created
|
|
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
|
|
|
|
# This workflow uses actions that are not certified by GitHub.
|
|
# They are provided by a third-party and are governed by
|
|
# separate terms of service, privacy policy, and support
|
|
# documentation.
|
|
|
|
name: Release
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
persist-credentials: false
|
|
|
|
- name: Setup Poetry
|
|
uses: snok/install-poetry@v1
|
|
|
|
- name: Semantic Release
|
|
uses: cycjimmy/semantic-release-action@v3
|
|
|
|
id: semantic
|
|
with:
|
|
semantic_version: 18
|
|
extra_plugins: |
|
|
@semantic-release/changelog@6
|
|
@semantic-release/exec
|
|
@semantic-release/git@10
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.RELEASE_PAT }}
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
|
|
- name: Build and publish package
|
|
if: steps.semantic.outputs.new_release_published == 'true'
|
|
uses: JRubics/poetry-publish@v1.16
|
|
with:
|
|
pypi_token: ${{ secrets.PYPI_API_TOKEN }}
|