Browse Source
Stop using deprecated set-output GH Actions command
pull/9009/head
Jakub Kuczys
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
.github/workflows/crowdin_download.yml
|
|
@ -15,13 +15,14 @@ jobs: |
|
|
|
- id: check |
|
|
|
if: env.CROWDIN_API_KEY != null |
|
|
|
run: | |
|
|
|
echo "::set-output name=available::true" |
|
|
|
echo "available=true" >> $GITHUB_OUTPUT |
|
|
|
env: |
|
|
|
CROWDIN_API_KEY: ${{ secrets.CROWDIN_API_KEY }} |
|
|
|
|
|
|
|
download: |
|
|
|
runs-on: ubuntu-latest |
|
|
|
needs: [ check-environment ] |
|
|
|
# secrets cannot be accessed inside an `if` so this needs to be checked in separate job |
|
|
|
if: needs.check-environment.outputs.available == 'true' |
|
|
|
environment: Crowdin |
|
|
|
name: download |
|
|
|