Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
vinimarcili committed Feb 1, 2024
1 parent a4a7178 commit 4ae03b5
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/show.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Exemplo de GitHub Action

on: 'pull_request'

jobs:
exemplo_job:
runs-on: ubuntu-latest

steps:
- name: Checkout do repositório
uses: actions/checkout@v2

- name: Configurar variáveis de ambiente
run: |
echo "export GCE_AUTH_JSON=\${{ secrets.GCE_AUTH_JSON }}" >> $GITHUB_ENV
echo "export NPM_TOKEN=\${{ secrets.NPM_TOKEN }}" >> $GITHUB_ENV
shell: bash

- name: Imprimir variável de ambiente
run: |
echo "GCE_AUTH_JSON=${GCE_AUTH_JSON}"
echo "NPM_TOKEN=${NPM_TOKEN}"
shell: bash

0 comments on commit 4ae03b5

Please sign in to comment.