Skip to content

Commit

Permalink
Auto version release
Browse files Browse the repository at this point in the history
  • Loading branch information
samlown committed Oct 17, 2024
1 parent 09b9c5d commit 04c33df
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
#
# Automatically tag a merge with main.
#

name: Release

on:
push:
branches:
- main
paths-ignore:
- "README.md"

jobs:
release:
name: Tag
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: "0" # make sure we get all commits!

- name: Bump version and push tag
id: bump
uses: anothrNick/github-tag-action@1.52.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RELEASE_BRANCHES: release
WITH_V: true

0 comments on commit 04c33df

Please sign in to comment.