Skip to content

Commit acb3ef0

Browse files
committed
fix: remove automated screenshots update
Signed-off-by: Jakub Freisler <[email protected]>
1 parent b8af2ed commit acb3ef0

File tree

2 files changed

+4
-12
lines changed

2 files changed

+4
-12
lines changed

.github/workflows/ci.yml

+3-11
Original file line numberDiff line numberDiff line change
@@ -76,14 +76,12 @@ jobs:
7676
runs-on: ubuntu-latest
7777
needs: cache
7878
steps:
79-
- uses: actions/checkout@v2
80-
with:
81-
repository: ${{ github.repository }}
82-
token: ${{ secrets.GH_COMMIT_TOKEN }}
83-
fetch-depth: 0
79+
- uses: actions/checkout@v3
8480
- uses: actions/setup-node@v3
8581
with:
8682
node-version: '16.x'
83+
- name: remove git auth
84+
run: git config --unset http.https://github.com/.extraheader
8785
- name: Configure Yarn cache
8886
uses: actions/cache@v3
8987
with:
@@ -103,12 +101,6 @@ jobs:
103101
run: yarn test:e2e:ci
104102
- name: Test component-testing
105103
run: yarn test:ct:ci
106-
- run: |
107-
git config user.name FRSgit
108-
git config user.email [email protected]
109-
git add ./\*.png
110-
git commit -m "chore: update CI screenshots"
111-
git push
112104

113105
build-and-release:
114106
name: build and release

example/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"serve": "vue-cli-service serve",
77
"build": "vue-cli-service build",
88
"test:open": "vue-cli-service test:e2e --env \"pluginVisualRegressionImagesDir=__image_snapshots_local__\"",
9-
"test:run": "vue-cli-service test:e2e --env \"pluginVisualRegressionUpdateImages=true\"",
9+
"test:run": "vue-cli-service test:e2e",
1010
"test:ct": "yarn test:open --component",
1111
"test:ct:ci": "yarn test:run --component --headless",
1212
"test:e2e": "yarn test:open --e2e",

0 commit comments

Comments
 (0)