Skip to content

Commit

Permalink
ci/cd: fix sed script | 3
Browse files Browse the repository at this point in the history
  • Loading branch information
dulvui committed Nov 4, 2024
1 parent 7f743eb commit 3ae44a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ jobs:
AWS_ACCESS_KEY_TEST: ${{ secrets.AWS_ACCESS_KEY_TEST }}
run: |
cp aws.credentials.example .aws.credentials
sed -i -e "s/KEY_ID/$AWS_KEY_ID_TEST/" .aws.credentials
sed -i -e "s/ACCESS_KEY/$AWS_ACCESS_KEY_TEST/" .aws.credentials
sed -i -e 's/KEY_ID/"$AWS_KEY_ID_TEST"/' .aws.credentials
sed -i -e 's/ACCESS_KEY/"$AWS_ACCESS_KEY_TEST"/' .aws.credentials
- name: Build and push images
uses: noi-techpark/github-actions/docker-build-and-push@v2
Expand Down

0 comments on commit 3ae44a0

Please sign in to comment.