Skip to content

Commit 1c9f483

Browse files
authored
Merge pull request #37 from wednesday-solutions/feat/update-link
feat: add git pull to workflow
2 parents 42203b4 + f485f58 commit 1c9f483

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/cd-alpha-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
cd "$GITHUB_WORKSPACE"
3434
git config user.email "[email protected]"
3535
git config user.name "$GITHUB_ACTOR"
36-
git fetch
36+
git pull
3737
npm version prerelease --preid=alpha
3838
git push
3939

.github/workflows/cd-beta-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
cd "$GITHUB_WORKSPACE"
3434
git config user.email "[email protected]"
3535
git config user.name "$GITHUB_ACTOR"
36-
git fetch
36+
git pull
3737
npm version prerelease --preid=beta
3838
git push
3939

.github/workflows/cd-latest-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
cd "$GITHUB_WORKSPACE"
3838
git config user.email "[email protected]"
3939
git config user.name "$GITHUB_ACTOR"
40-
git fetch
40+
git pull
4141
npm version patch
4242
git push
4343

0 commit comments

Comments
 (0)