Skip to content

Commit

Permalink
Update deploy-environment.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
aitorcajas authored Oct 9, 2024
1 parent e354769 commit 2ac1059
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/deploy-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ on:
jobs:
job_environment:
runs-on: ubuntu-latest
environment: ${{github.events.inputs.environment}}
environment: ${{ github.events.inputs.environment }}
steps:
- name: api
run: echo "API_URL=${{vars.API_URL}}" >> $GITHUB_OUTPUT
run: echo "API_URL=${{ vars.API_URL }}" >> $GITHUB_OUTPUT

- name: log
run: echo "API_URL=${{vars.LOG_LEVEL}}" >> $GITHUB_OUTPUT
run: echo "API_URL=${{ vars.LOG_LEVEL }}" >> $GITHUB_OUTPUT

- name: imprimir variables
run: |
echo "API_URL ${{steps.api.outputs.API_URL}}"
echo "LOG_LEVEL ${{steps.log.outputs.LOG_LEVEL}}"
echo "API_URL ${{ steps.api.outputs.API_URL }}"
echo "LOG_LEVEL ${{ steps.log.outputs.LOG_LEVEL }}"

0 comments on commit 2ac1059

Please sign in to comment.