Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Silvija Tovernic committed Sep 27, 2024
1 parent 80b1b46 commit 5a22b70
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/pulumi_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,19 @@ jobs:
CONTAINER_MEMORY: "512"
CONTAINER_PORT: "80"


steps:
# - uses: actions/checkout@v2

- name: Mask secret vars
run: echo "::add-mask::${{ inputs.test_input }}"

- name: Print secret vars
run: echo ${{ inputs.test_input }}
## Run script and mask access token
- name: Run Script
run: |
TEST_INPUT="${{ inputs.TEST_INPUT }}"
echo "::add-mask::$TEST_INPUT"
echo "TEST_INPUT=$TEST_INPUT" >> $GITHUB_ENV
echo $TEST_INPUT
env:
# secrets are masked by default
TEST_INPUT: ${{secrets.TEST_INPUT}}


# - uses: actions/setup-python@v2
Expand Down

0 comments on commit 5a22b70

Please sign in to comment.