From 0c1ddfe00add319019f98f280e23d7d11d5f421f Mon Sep 17 00:00:00 2001 From: James Smith Date: Fri, 22 Apr 2022 10:31:44 +0100 Subject: [PATCH] Auto-tag releases as latest for prod deploy --- .github/workflows/latest-tag.yml | 14 ++++++++++++++ 1 file changed, 14 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 000000000..5263100fc --- /dev/null +++ b/.github/workflows/latest-tag.yml @@ -0,0 +1,14 @@ +name: Add latest tag to new release +on: + release: + types: [published] + +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@latest