File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -30,10 +30,13 @@ jobs:
30
30
run : |
31
31
make build install
32
32
make deb
33
+ - name : Set Distribution and Name
34
+ run : |
35
+ echo "DISTRIBUTION=$(echo '${{ matrix.container }}' | sed 's/:/-/g')" >> $GITHUB_ENV
33
36
- name : Upload artifacts
34
- uses : actions/upload-artifact@v3
37
+ uses : actions/upload-artifact@v4
35
38
with :
36
- name : octopass-${{ github.job }}
39
+ name : octopass-${{ env.DISTRIBUTION }}
37
40
path : builds/**
38
41
debian :
39
42
name : Build on ${{matrix.container }}
@@ -56,10 +59,13 @@ jobs:
56
59
run : |
57
60
make build install
58
61
make deb
62
+ - name : Set Distribution and Name
63
+ run : |
64
+ echo "DISTRIBUTION=$(echo '${{ matrix.container }}' | sed 's/:/-/g')" >> $GITHUB_ENV
59
65
- name : Upload artifacts
60
- uses : actions/upload-artifact@v3
66
+ uses : actions/upload-artifact@v4
61
67
with :
62
- name : octopass-${{ github.job }}
68
+ name : octopass-${{ env.DISTRIBUTION }}
63
69
path : builds/**
64
70
# centos:
65
71
# name: Build on ${{matrix.container }}
You can’t perform that action at this time.
0 commit comments