File tree Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Original file line number Diff line number Diff line change 7
7
- " minor/*"
8
8
- " patch/*"
9
9
10
- # Allows you to run this workflow manually from the Actions tab
11
- workflow_dispatch :
12
-
13
10
jobs :
14
11
prepare-release :
15
12
runs-on : ubuntu-latest
45
42
GITHUB_TOKEN : ${{ secrets.CUSTOM_ACCESS_TOKEN }}
46
43
run : |
47
44
NEW_VERSION="${{ steps.extract_version.outputs.new_version }}"
48
- git config user.name thedevsbuddy
49
- git config user.email devsbuddy404@gmail .com
45
+ git config user.name github-actions
46
+ git config user.email github-actions@github .com
50
47
git add pubspec.yaml
51
48
git commit -m "Bump version to $NEW_VERSION"
52
49
git tag "v$NEW_VERSION"
Original file line number Diff line number Diff line change 1
1
name : Publish Release
2
2
3
3
on :
4
+ workflow_dispatch :
4
5
push :
5
6
tags :
6
7
- " v[0-9]+.[0-9]+.[0-9]+"
7
8
8
- # Allows you to run this workflow manually from the Actions tab
9
- workflow_dispatch :
10
-
11
9
jobs :
12
10
publish :
13
11
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments