From bd3b0686515244c0d72e4e05e5fc46ec13a8182f Mon Sep 17 00:00:00 2001 From: Chip Senkbeil Date: Thu, 6 Jul 2023 00:40:07 -0500 Subject: [PATCH] Add workflow to tag latest --- .github/workflows/latest.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/latest.yml diff --git a/.github/workflows/latest.yml b/.github/workflows/latest.yml new file mode 100644 index 0000000..904b208 --- /dev/null +++ b/.github/workflows/latest.yml @@ -0,0 +1,14 @@ +name: 'Tag latest' + +on: + push: + branches: + - master + +jobs: + action: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Run latest-tag + uses: EndBug/latest-tag@latest