v2.0.0 #12
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is workflow runs on release | |
# | |
name: Major Release | |
# Controls when the action will run. | |
on: | |
release: | |
types: [published, edited] | |
jobs: | |
release: | |
name: '🏷️ Release' | |
runs-on: ubuntu-latest | |
steps: | |
- name: '📦 Update major version' | |
uses: Actions-R-Us/actions-tagger@v2 | |
with: | |
publish_latest_tag: true | |
token: ${{ secrets.GH_TOKEN }} |