diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7c54908..9cde9f5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,8 +28,3 @@ jobs: tag_name: ${{ steps.changelog.outputs.tag }} release_name: ${{ steps.changelog.outputs.tag }} body: ${{ steps.changelog.outputs.clean_changelog }} - - - name: Update main tag - uses: Actions-R-Us/actions-tagger@latest - env: - GITHUB_TOKEN: ${{ secrets.github_token }} diff --git a/.github/workflows/tag-latest.yml b/.github/workflows/tag-latest.yml new file mode 100644 index 0000000..c9425dc --- /dev/null +++ b/.github/workflows/tag-latest.yml @@ -0,0 +1,16 @@ +name: 'Tag latest release of action tagger :zap:' + +on: + release: + types: + - published + - edited + +jobs: + run-tag-latest: + runs-on: windows-latest + steps: + - uses: actions/checkout@v2 + - uses: ./ + env: + GITHUB_TOKEN: ${{ secrets.github_token }}