File tree Expand file tree Collapse file tree 2 files changed +34
-5
lines changed Expand file tree Collapse file tree 2 files changed +34
-5
lines changed Original file line number Diff line number Diff line change
1
+ name : fixtures
2
+ on :
3
+ push :
4
+ branches :
5
+ - master
6
+ jobs :
7
+ rebuild :
8
+ if : ${{ needs.build.outputs.UPDATE_FIXTURES == 'true' && success() }}
9
+ needs : e2e-tests
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - uses : actions/checkout@v4
13
+ - uses : actions/setup-go@v5
14
+ with :
15
+ go-version-file : " go.mod"
16
+ - name : Docker Login
17
+ uses : docker/login-action@v3
18
+ with :
19
+ registry : quay.io
20
+ username : ${{ secrets.QUAY_USERNAME }}
21
+ password : ${{ secrets.QUAY_PASSWORD }}
22
+ - name : Download build artifacts
23
+ uses : actions/download-artifact@v4
24
+ with :
25
+ name : docker-images
26
+ path : images/
27
+ - name : Load Docker images
28
+ run : |
29
+ for image in images/*.tar.gz; do
30
+ docker load -i $image
31
+ done
32
+ - name : Push fixture images
33
+ run : scripts/e2e_test_fixtures.sh --push --skip-build
Original file line number Diff line number Diff line change @@ -271,9 +271,6 @@ github.com/go-air/gini/inter
271
271
github.com/go-air/gini/internal/xo
272
272
github.com/go-air/gini/logic
273
273
github.com/go-air/gini/z
274
- <<<<<<< HEAD
275
- # github.com/go-logr/logr v1.4.2
276
- =======
277
274
# github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376
278
275
## explicit; go 1.13
279
276
github.com/go-git/gcfg
@@ -289,8 +286,7 @@ github.com/go-git/go-git/v5/internal/path_util
289
286
github.com/go-git/go-git/v5/plumbing/format/config
290
287
github.com/go-git/go-git/v5/plumbing/format/gitignore
291
288
github.com/go-git/go-git/v5/utils/ioutil
292
- # github.com/go-logr/logr v1.4.1
293
- >>>>>>> 2452c2f43 (add opm to tools)
289
+ # github.com/go-logr/logr v1.4.2
294
290
## explicit; go 1.18
295
291
github.com/go-logr/logr
296
292
github.com/go-logr/logr/funcr
You can’t perform that action at this time.
0 commit comments