fix: bump ubi9-minimal from 9.3-1552 to 9.3-1612 (#77) #45
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
# runs on each push to main and is responsible for creating new tags/releases | |
name: Create Semantic Release | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
semantic-release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Run go-semantic-release | |
id: semrel | |
uses: go-semantic-release/[email protected] | |
with: | |
github-token: ${{ secrets.PAT }} | |
allow-initial-development-versions: true |