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 }}