Skip to content

pyqt5

pyqt5 #22

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
permissions:
contents: write
packages: write
env:
REF_NAME: ${{ github.head_ref || github.ref_name }}
jobs:
create_release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/reusable/install_and_test
- uses: ./.github/reusable/build_and_push_docker
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Create release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref_name }}
run: |
gh release create "$tag" \
--repo="$GITHUB_REPOSITORY" \
--title="${tag#v}" \
--generate-notes