Skip to content

chore: Add Kubernetes deployment and service files for API and MongoD… #31

chore: Add Kubernetes deployment and service files for API and MongoD…

chore: Add Kubernetes deployment and service files for API and MongoD… #31

Workflow file for this run

name: Create Release
on:
push:
branches:
- main
jobs:
create-release:
name: Creating Tag and Release
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v4
- name: Creating Tag
id: changelog
uses: TriPSs/conventional-changelog-action@v5
with:
github-token: ${{ secrets.PA_TOKEN }}
output-file: "false"
skip-commit: "true"
create-summary: 'true'
version-file: './version.yaml'
- name: Create Release
if: steps.changelog.outputs.skipped == 'false'
uses: ncipollo/release-action@v1
with:
token: ${{ secrets.PA_TOKEN }}
tag : ${{ steps.changelog.outputs.tag }}
name: ${{ steps.changelog.outputs.tag }}
body: ${{ steps.changelog.outputs.clean_changelog }}