Skip to content

Updated .gitignore file #4

Updated .gitignore file

Updated .gitignore file #4

Workflow file for this run

name: Tag and Release
on:
pull_request:
types:
- closed
branches:
- main
workflow_call:
jobs:
release:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
ref: ${{ github.sha }}
fetch-depth: '0'
- name: Bump version and push tag
id: create_tag
uses: anothrNick/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
WITH_V: true
DEFAULT_BUMP: patch
- name: Create release
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "${{ steps.create_tag.outputs.tag }}"
title: "Release ${{ steps.create_tag.outputs.tag }}"
draft: false
prerelease: false