From ca2d023c6c4005fb9602ec24e22c7381e651addf Mon Sep 17 00:00:00 2001 From: kwindrem <58538395+kwindrem@users.noreply.github.com> Date: Sat, 16 Dec 2023 09:03:29 -0800 Subject: [PATCH] fixed: bad file sets for v3.11, 3.12 ... --- .github/workflows/latest-tag.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/latest-tag.yml diff --git a/.github/workflows/latest-tag.yml b/.github/workflows/latest-tag.yml new file mode 100644 index 0000000..1bbe708 --- /dev/null +++ b/.github/workflows/latest-tag.yml @@ -0,0 +1,20 @@ +name: Add latest tag to new release +on: + release: + types: [published] + workflow_dispatch: + +jobs: + run: + name: Run local action + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@master + + - name: Run latest-tag + uses: EndBug/latest-tag@v1 + with: + description: This tag has been auto-generated by this action. + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}