Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Sync version tags from SDK #29

Sync version tags from SDK

Sync version tags from SDK #29

Workflow file for this run

name: Sync version tags from SDK
on:
schedule:
# Run every day at 00:00
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
tag_from_sdk:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
with:
fetch-depth: 0 # Check out everything to be able to tag.
- uses: dart-lang/setup-dart@e51d8e571e22473a2ddebf0ef8a2123f0ab2c02c
with:
sdk: stable
- id: install
name: Install dependencies
run: dart pub get
- id: tags
name: push_missing_tags_to_origin
run: dart tool/create_version_tags_from_sdk.dart --create --push