We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2e27b8 commit 06e1960Copy full SHA for 06e1960
.github/workflows/tag_from_sdk.yml
@@ -0,0 +1,20 @@
1
+name: Sync version tags from SDK
2
+on:
3
+ schedule:
4
+ # Run every day at 00:00
5
+ - cron: "0 0 * * *"
6
+
7
+jobs:
8
+ tag_from_sdk:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
12
+ - uses: dart-lang/setup-dart@e51d8e571e22473a2ddebf0ef8a2123f0ab2c02c
13
+ with:
14
+ sdk: stable
15
+ - id: install
16
+ name: Install dependencies
17
+ run: dart pub get
18
+ - id: tags
19
+ name: push_missing_tags_to_origin
20
+ run: dart tool/create_version_tags_from_sdk.dart --create --push
0 commit comments