Skip to content

Commit 10967d9

Browse files
committed
Updated
1 parent 4d9ad3d commit 10967d9

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

.github/workflows/prepare-release.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ on:
77
- "minor/*"
88
- "patch/*"
99

10-
# Allows you to run this workflow manually from the Actions tab
11-
workflow_dispatch:
12-
1310
jobs:
1411
prepare-release:
1512
runs-on: ubuntu-latest
@@ -45,8 +42,8 @@ jobs:
4542
GITHUB_TOKEN: ${{ secrets.CUSTOM_ACCESS_TOKEN }}
4643
run: |
4744
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
5047
git add pubspec.yaml
5148
git commit -m "Bump version to $NEW_VERSION"
5249
git tag "v$NEW_VERSION"

.github/workflows/publish-release.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
name: Publish Release
22

33
on:
4+
workflow_dispatch:
45
push:
56
tags:
67
- "v[0-9]+.[0-9]+.[0-9]+"
78

8-
# Allows you to run this workflow manually from the Actions tab
9-
workflow_dispatch:
10-
119
jobs:
1210
publish:
1311
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)