Skip to content

Commit

Permalink
Don't use openssl and travis secrets API but use a github actions sec…
Browse files Browse the repository at this point in the history
…ret instead
  • Loading branch information
maxGimeno committed Jan 13, 2021
1 parent 7808d1d commit 43da397
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,7 @@ jobs:
if: ${{ github.ref == 'master' }} && ! ${{ github.event.issue.pull_request }}
steps:
- name: Update
run: openssl aes-256-cbc -K $encrypted_99d730745b24_key -iv $encrypted_99d730745b24_iv -in secret.txt.enc -out secret.txt -d; source ./secret.txt; docker login -u lrineau -p $PASS; bash -x ./push.sh $PLATFORM; fi
run: |
docker login -u maxgimeno -p ${{ secrets.PASSWD }}
bash -x ./push.sh ${{ matrix.test_platform }}

0 comments on commit 43da397

Please sign in to comment.