Skip to content

Merge pull request #11 from ajanis/hostfile-fix #30

Merge pull request #11 from ajanis/hostfile-fix

Merge pull request #11 from ajanis/hostfile-fix #30

Workflow file for this run

---
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Tag on Merge
on:
push:
branches:
- main
- master
env:
CI: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Bump version and push tag
uses: anothrNick/github-tag-action@1.36.0
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
WITH_V: true
DEFAULT_BUMP: minor
- name: Push changes
uses: ad-m/github-push-action@master
if: steps.commit.outputs.exit_code == 0
with:
github_token: ${{ secrets.GH_TOKEN }}
force: true
branch: ${{ github.ref }}