First release #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Branch push | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
# Required to request the OIDC JWT Token | |
id-token: write | |
# Required when GH token is used to authenticate with private repo | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Draft release | |
uses: KoblerS/release-drafter@v1 | |
with: | |
version-prefix: '' |