Skip to content

Commit

Permalink
Add support to create pre-releases and releases automatically
Browse files Browse the repository at this point in the history
Signed-off-by: Tobias Wolf <[email protected]>
  • Loading branch information
NotTheEvilOne authored Nov 7, 2024
1 parent 49641ad commit bc8a407
Show file tree
Hide file tree
Showing 2 changed files with 99 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/on-push-pre-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: py:pre-release

on:
push:
tags: [ 'v*' ]

jobs:
create-pre-release:
runs-on: ubuntu-latest

steps:
- name: Checkout commit
uses: actions/checkout@v3
- name: Get the Git tag name
id: get-tag-name
run: echo "tag-name=${GITHUB_REF/refs\/tags\/v/}"
- name: Create Release
uses: actions/create-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v${{ steps.get-tag-name.outputs.tag-name }}
release_name: v${{ steps.get-tag-name.outputs.tag-name }}
body: |-
"Rookify" release v${{ steps.get-tag-name.outputs.tag-name }}
prerelease: true
73 changes: 73 additions & 0 deletions .github/workflows/on-release-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
name: py:publish

on:
release:
types: [ released ]

jobs:
ghcr-publish:
runs-on: ubuntu-latest
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
permissions:
attestations: write
contents: read
id-token: write
packages: write

steps:
- name: Checkout commit
uses: actions/checkout@v3
- name: Log in to ghcr.io
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata
id: metadata
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push
id: push
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: ${{ steps.metadata.outputs.tags }}
labels: ${{ steps.metadata.outputs.labels }}
- name: Generate artifact attestation
uses: actions/attest-build-provenance@v1
with:
subject-name: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME}}
subject-digest: ${{ steps.push.outputs.digest }}
push-to-registry: true

pypi-publish:
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/rookify
permissions:
id-token: write

steps:
- name: Checkout commit
uses: actions/checkout@v3
- name: Set up Python
id: setup-python
uses: actions/setup-python@v3
- name: Install dependencies
run: |-
pip install -r ./requirements.txt
pip install build
- name: Execute build
run: |-
python -m build .
- name: Publish package
uses: pypa/gh-action-pypi-publish@v1
with:
user: __token__
password: ${{ secrets.PYPI_PROD_PASSWORD }}

0 comments on commit bc8a407

Please sign in to comment.