From 842916bc47b52c3f65efe24c81bf28f5d7b9a544 Mon Sep 17 00:00:00 2001 From: Tom Schlick Date: Sat, 23 Mar 2024 13:49:52 -0400 Subject: [PATCH] Create tag.yml --- .github/workflows/tag.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/tag.yml diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml new file mode 100644 index 0000000..93772d2 --- /dev/null +++ b/.github/workflows/tag.yml @@ -0,0 +1,19 @@ +name: release-please + +on: + push: + branches: + - master + +permissions: + contents: write + pull-requests: write + +jobs: + release-please: + runs-on: ubuntu-latest + steps: + - uses: google-github-actions/release-please-action@v4 + with: + token: ${{ secrets.GITHUB_TOKEN }} + release-type: go \ No newline at end of file