File tree Expand file tree Collapse file tree 2 files changed +16
-16
lines changed Expand file tree Collapse file tree 2 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 10
10
test :
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - name : Translate Repo Name For Build Tools filename_prefix
14
- id : repo-name
15
- run : |
16
- echo "repo-name=$(
17
- echo ${{ github.repository }} |
18
- awk -F '\/' '{ print tolower($2) }' |
19
- tr '_' '-'
20
- )" >> $GITHUB_OUTPUT
21
13
- name : Set up Python 3.10
22
14
uses : actions/setup-python@v4
23
15
with :
28
20
- uses : actions/checkout@v3
29
21
with :
30
22
submodules : true
23
+ - name : Translate Repo Name For Build Tools filename_prefix
24
+ id : repo-name
25
+ run : |
26
+ echo "repo-name=$(
27
+ echo ${{ github.repository }} |
28
+ awk -F '\/' '{ print tolower($2) }' |
29
+ tr '_' '-'
30
+ )" >> $GITHUB_OUTPUT
31
31
- name : Install deps
32
32
run : |
33
33
sudo apt-get install gettext
Original file line number Diff line number Diff line change 16
16
uses : actions/github-script@v6
17
17
with :
18
18
script : console.log(JSON.stringify(context, null, 2))
19
- - name : Translate Repo Name For Build Tools filename_prefix
20
- id : repo-name
21
- run : |
22
- echo "repo-name=$(
23
- echo ${{ github.repository }} |
24
- awk -F '\/' '{ print tolower($2) }' |
25
- tr '_' '-'
26
- )" >> $GITHUB_OUTPUT
27
19
- name : Set up Python 3.10
28
20
uses : actions/setup-python@v4
29
21
with :
34
26
- uses : actions/checkout@v3
35
27
with :
36
28
submodules : true
29
+ - name : Translate Repo Name For Build Tools filename_prefix
30
+ id : repo-name
31
+ run : |
32
+ echo "repo-name=$(
33
+ echo ${{ github.repository }} |
34
+ awk -F '\/' '{ print tolower($2) }' |
35
+ tr '_' '-'
36
+ )" >> $GITHUB_OUTPUT
37
37
- name : Install deps
38
38
run : |
39
39
sudo apt-get install gettext
You can’t perform that action at this time.
0 commit comments