Skip to content

🐛 Fixing Bug with latest version causing integration test to fail… #18

🐛 Fixing Bug with latest version causing integration test to fail…

🐛 Fixing Bug with latest version causing integration test to fail… #18

Workflow file for this run

name: Release Process
on:
push: # Only trigger for tags with format v****
tags:
- v[0-9]+.[0-9]+.[0-9]+
jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Release with Notes
uses: softprops/action-gh-release@v2
with:
generate_release_notes: true
token: ${{ secrets.GITHUB_TOKEN }}
- name: Update Tags
uses: vweevers/additional-tags-action@v2