Skip to content

Commit

Permalink
Added auto tagger for 'latest'
Browse files Browse the repository at this point in the history
  • Loading branch information
herrfrei committed Dec 17, 2023
1 parent 47cdb28 commit adb0ba6
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/latest-tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
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
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit adb0ba6

Please sign in to comment.