Browse Source
Fix export problem for special values
pull/4409/head
Arash Hatami
2 years ago
No known key found for this signature in database
GPG Key ID: D3D9E8CB2E49731F
1 changed files with
5 additions and
5 deletions
-
.github/workflows/DNS.yml
|
@ -121,19 +121,19 @@ jobs: |
|
|
- name: Run acmetest |
|
|
- name: Run acmetest |
|
|
run: | |
|
|
run: | |
|
|
if [ "${{ secrets.TokenName1}}" ] ; then |
|
|
if [ "${{ secrets.TokenName1}}" ] ; then |
|
|
export ${{ secrets.TokenName1}}=${{ secrets.TokenValue1}} |
|
|
|
|
|
|
|
|
export ${{ secrets.TokenName1}}="${{ secrets.TokenValue1}}" |
|
|
fi |
|
|
fi |
|
|
if [ "${{ secrets.TokenName2}}" ] ; then |
|
|
if [ "${{ secrets.TokenName2}}" ] ; then |
|
|
export ${{ secrets.TokenName2}}=${{ secrets.TokenValue2}} |
|
|
|
|
|
|
|
|
export ${{ secrets.TokenName2}}="${{ secrets.TokenValue2}}" |
|
|
fi |
|
|
fi |
|
|
if [ "${{ secrets.TokenName3}}" ] ; then |
|
|
if [ "${{ secrets.TokenName3}}" ] ; then |
|
|
export ${{ secrets.TokenName3}}=${{ secrets.TokenValue3}} |
|
|
|
|
|
|
|
|
export ${{ secrets.TokenName3}}="${{ secrets.TokenValue3}}" |
|
|
fi |
|
|
fi |
|
|
if [ "${{ secrets.TokenName4}}" ] ; then |
|
|
if [ "${{ secrets.TokenName4}}" ] ; then |
|
|
export ${{ secrets.TokenName4}}=${{ secrets.TokenValue4}} |
|
|
|
|
|
|
|
|
export ${{ secrets.TokenName4}}="${{ secrets.TokenValue4}}" |
|
|
fi |
|
|
fi |
|
|
if [ "${{ secrets.TokenName5}}" ] ; then |
|
|
if [ "${{ secrets.TokenName5}}" ] ; then |
|
|
export ${{ secrets.TokenName5}}=${{ secrets.TokenValue5}} |
|
|
|
|
|
|
|
|
export ${{ secrets.TokenName5}}="${{ secrets.TokenValue5}}" |
|
|
fi |
|
|
fi |
|
|
cd ../acmetest |
|
|
cd ../acmetest |
|
|
./letest.sh |
|
|
./letest.sh |
|
|