Skip to content

Commit

Permalink
ci: remove unused paramenter on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
deandreamatias committed Oct 5, 2024
1 parent 5f80efb commit 5bd0bca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
ENV_PROD_BASE64: ${{ secrets.ENV_PROD_BASE64 }}
ENV_DEV_BASE64: ${{ secrets.ENV_DEV_BASE64 }}
run: |
echo $ENV_PROD_BASE64 | base64 -di > .env/prod.json
echo $ENV_DEV_BASE64 | base64 -di > .env/dev.json
echo $ENV_PROD_BASE64 | base64 -d > .env/prod.json
echo $ENV_DEV_BASE64 | base64 -d > .env/dev.json
- name: Set up JDK
uses: actions/setup-java@v4
with:
Expand Down

0 comments on commit 5bd0bca

Please sign in to comment.