This repository has been archived by the owner on Nov 28, 2024. It is now read-only.
fix: add the right version in the image overlay for the deployment (#… #86
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: Release Drafter | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: read | |
# The release-drafter action adds PR titles to the release notes once these are merged to main. | |
# A draft release is kept up-to-date listing the changes for the next minor release version. | |
jobs: | |
update_release_draft: | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: release-drafter/release-drafter@v5 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |