Skip to content

Linter upgrade and formatting #patch #6

Linter upgrade and formatting #patch

Linter upgrade and formatting #patch #6

Workflow file for this run

#
# Automatically tag a merge with main
#
name: Release
on:
push:
branches:
- main
jobs:
tag-build-publish:
name: Tag
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: "0" # make sure we get all commits!
- name: Bump version and push tag
id: bump
uses: anothrNick/github-tag-action@1.36.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RELEASE_BRANCHES: main
WITH_V: true