Update pubspec.yaml #377
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 workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
name: Auto Tag from pubspec.yaml | |
on: | |
push: | |
branches: ["main"] | |
paths: | |
- "pubspec.yaml" # Only run on changes to the pubspec.yaml file | |
jobs: | |
tag: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Flutter Auto Tag | |
# You may pin to the exact commit or the version. | |
uses: jacopocarlini/action-autotag@3.0.0 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |