Skip to content

Commit ab4d412

Browse files
Merge pull request #94 from ovcharenko-di/fix/1cedtcli
fix secret name
2 parents 9f698f4 + c4a1328 commit ab4d412

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/testing.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,22 +113,22 @@ jobs:
113113
sudo mkdir -p /var/1C/licenses
114114
115115
# Запись лицензии в файл
116-
echo "${{ secrets.ONEC_LICENCE }}" | sudo tee /var/1C/licenses/licence.lic > /dev/null
116+
echo "${{ secrets.ONEC_LICENSE }}" | sudo tee /var/1C/licenses/licence.lic > /dev/null
117117
118118
# Назначение прав
119119
sudo chmod 777 -R /var/1C/licenses
120120
shell: bash
121121
env:
122-
ONEC_LICENCE: ${{ secrets.ONEC_LICENCE }}
122+
ONEC_LICENSE: ${{ secrets.ONEC_LICENSE }}
123123

124124
- name: Установка лицензии (Windows)
125125
if: startsWith(matrix.os, 'windows')
126126
run: |
127127
mkdir "C:\ProgramData\1C\licenses" -Force
128-
echo $Env:ONEC_LICENCE | Out-File -FilePath "C:\ProgramData\1C\licenses\licence.lic" -Encoding ascii
128+
echo $Env:ONEC_LICENSE | Out-File -FilePath "C:\ProgramData\1C\licenses\licence.lic" -Encoding ascii
129129
shell: pwsh
130130
env:
131-
ONEC_LICENCE: ${{ secrets.ONEC_LICENCE }}
131+
ONEC_LICENSE: ${{ secrets.ONEC_LICENSE }}
132132

133133
- name: Установка gitsync локально
134134
run: opm run install-gitsync

0 commit comments

Comments
 (0)