Skip to content

integrated postman to configure api's remotely #5

integrated postman to configure api's remotely

integrated postman to configure api's remotely #5

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Bump version and push tag
id: tag_version
uses: mathieudutour/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
release_branches: main
default_bump: "patch"
- name: Create a GitHub release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAG_NAME: ${{ steps.tag_version.outputs.new_tag }}
RELEASE_NAME: "Release v${{ steps.tag_version.outputs.new_version }}"
run: |
gh release create ${{ steps.tag_version.outputs.new_tag }} \
--title "Release v${{ steps.tag_version.outputs.new_version }}" \
--notes "${{ steps.tag_version.outputs.changelog }}"