From 66ce2efdf543b944d98fb5460e96ac6045ef0db7 Mon Sep 17 00:00:00 2001 From: Phil Tyler Date: Thu, 21 Mar 2024 15:37:28 -0700 Subject: [PATCH] [minor] Add Autotag --- .github/workflows/tag-release.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/tag-release.yml diff --git a/.github/workflows/tag-release.yml b/.github/workflows/tag-release.yml new file mode 100644 index 0000000..9000449 --- /dev/null +++ b/.github/workflows/tag-release.yml @@ -0,0 +1,17 @@ +name: Autotag and Release +on: + push: + branches: + - main + +permissions: + contents: write + +jobs: + tag-release: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: pantheon-systems/action-autotag@v0 + with: + gh-token: ${{ github.token }} \ No newline at end of file