mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-22 19:14:20 +00:00
a0079a9b8c
Bumps [ASzc/change-string-case-action](https://github.com/ASzc/change-string-case-action) from 4 to 5. - [Release notes](https://github.com/ASzc/change-string-case-action/releases) - [Commits](https://github.com/ASzc/change-string-case-action/compare/v4...v5) --- updated-dependencies: - dependency-name: ASzc/change-string-case-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
134 lines
3.6 KiB
YAML
134 lines
3.6 KiB
YAML
name: "Automated release"
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*"
|
|
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
|
|
|
|
jobs:
|
|
tests:
|
|
uses: "./.github/workflows/tests.yml"
|
|
|
|
build-package:
|
|
name: "📦 Build Python package"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: "⬇️ Checkout repository"
|
|
uses: actions/checkout@v3
|
|
|
|
- name: "🔨 Setup Python"
|
|
uses: actions/setup-python@v3
|
|
|
|
- name: "🔨 Setup Poetry"
|
|
uses: abatilo/actions-poetry@v2.1.6
|
|
|
|
- name: "🔨 Setup Poetry Python environment"
|
|
uses: Steffo99/actions-poetry-deps@v0.2.4
|
|
|
|
- name: "🏗 Build package with Poetry"
|
|
run: poetry build --no-interaction
|
|
|
|
- name: "⬆️ Upload code package to artifacts"
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: "Build"
|
|
path: dist/*.tar.gz
|
|
if-no-files-found: error
|
|
|
|
- name: "⬆️ Upload wheel package to artifacts"
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: "Build"
|
|
path: dist/*.whl
|
|
if-no-files-found: warn
|
|
|
|
publish-github:
|
|
name: "🌐 Publish release on GitHub"
|
|
needs:
|
|
- "tests"
|
|
- "build-package"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: "⬇️ Download built packages from artifacts"
|
|
uses: actions/download-artifact@v3
|
|
with:
|
|
name: "Build"
|
|
path: dist/
|
|
|
|
- name: "🌐 Create release"
|
|
uses: ncipollo/release-action@v1.11.1
|
|
with:
|
|
artifactErrorsFailBuild: true
|
|
artifacts: dist/*
|
|
draft: true
|
|
generateReleaseNotes: true
|
|
|
|
publish-pypi:
|
|
name: "🌐 Publish release on PyPI"
|
|
needs:
|
|
- "tests"
|
|
- "build-package"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: "⬇️ Download built packages from artifacts"
|
|
uses: actions/download-artifact@v3
|
|
with:
|
|
name: "Build"
|
|
path: dist/
|
|
|
|
- name: "🌐 Upload package"
|
|
uses: pypa/gh-action-pypi-publish@release/v1
|
|
with:
|
|
user: "__token__"
|
|
password: ${{ secrets.PYPI_TOKEN }}
|
|
|
|
publish-docker:
|
|
name: "🐳 Build and publish Docker image on ghcr.io"
|
|
runs-on: ubuntu-latest
|
|
needs:
|
|
- "tests"
|
|
- "build-package"
|
|
steps:
|
|
- name: "Checkout repository"
|
|
uses: actions/checkout@v2
|
|
|
|
- name: "❓ Find the release semantic version"
|
|
id: semver
|
|
uses: Steffo99/actions-semver@v0.3.4
|
|
with:
|
|
string: ${{ github.ref_name }}
|
|
|
|
- name: "🔨 Setup Buildx"
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
- name: "🔑 Login to GitHub Containers"
|
|
uses: docker/login-action@v2
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.repository_owner }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: "🔽 Find the lowercase name of the repository"
|
|
id: reponame
|
|
uses: ASzc/change-string-case-action@v5
|
|
with:
|
|
string: ${{ github.repository }}
|
|
|
|
- name: "🏗 Build and push the Docker image"
|
|
uses: docker/build-push-action@v3
|
|
with:
|
|
target: "entrypoint"
|
|
tags: >-
|
|
ghcr.io/${{ steps.reponame.outputs.lowercase }}:${{ steps.semver.outputs.precedence }},
|
|
ghcr.io/${{ steps.reponame.outputs.lowercase }}:${{ steps.semver.outputs.core }},
|
|
ghcr.io/${{ steps.reponame.outputs.lowercase }}:${{ steps.semver.outputs.pair }},
|
|
ghcr.io/${{ steps.reponame.outputs.lowercase }}:${{ steps.semver.outputs.major }},
|
|
ghcr.io/${{ steps.reponame.outputs.lowercase }}:latest
|
|
push: true
|
|
|