Skip to content

Commit 1b4c15f

Browse files
committed
uploading lock files as artifacts in order to review used versions
1 parent 834afdd commit 1b4c15f

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/dockerpush.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,52 @@ jobs:
1010
- name: Run tests
1111
run: |
1212
docker-compose run --rm test_6_1_ruby_3_0
13+
- name: Upload lock files
14+
uses: actions/upload-artifact@v2
15+
with:
16+
name: lockfiles
17+
path: |
18+
yarn.lock
19+
Gemfile.lock
1320
test_6_1_ruby_2_7:
1421
runs-on: ubuntu-latest
1522
steps:
1623
- uses: actions/checkout@v2
1724
- name: Run tests
1825
run: |
1926
docker-compose run --rm test_6_1_ruby_2_7
27+
- name: Upload lock files
28+
uses: actions/upload-artifact@v2
29+
with:
30+
name: lockfiles
31+
path: |
32+
yarn.lock
33+
Gemfile.lock
2034
test_6_0_ruby_2_6:
2135
runs-on: ubuntu-latest
2236
steps:
2337
- uses: actions/checkout@v2
2438
- name: Run tests
2539
run: |
2640
docker-compose run --rm test_6_0_ruby_2_6
41+
- name: Upload lock files
42+
uses: actions/upload-artifact@v2
43+
with:
44+
name: lockfiles
45+
path: |
46+
yarn.lock
47+
Gemfile.lock
2748
test_5_2_ruby_2_6:
2849
runs-on: ubuntu-latest
2950
steps:
3051
- uses: actions/checkout@v2
3152
- name: Run tests
3253
run: |
3354
docker-compose run --rm test_5_2_ruby_2_6
55+
- name: Upload lock files
56+
uses: actions/upload-artifact@v2
57+
with:
58+
name: lockfiles
59+
path: |
60+
yarn.lock
61+
Gemfile.lock

0 commit comments

Comments
 (0)