Skip to content
This repository has been archived by the owner on Oct 28, 2024. It is now read-only.

Pipeline

Pipeline #6

name: Pipeline
on:
push:
branches:
- main
workflow_dispatch:
jobs:
test_environment_secret1:
runs-on: ubuntu-latest
environment: test1
steps:
- name: Run tests
run: |

Check failure on line 17 in .github/workflows/build-test-and-deploy.yml

View workflow run for this annotation

GitHub Actions / Pipeline

Invalid workflow file

The workflow is not valid. .github/workflows/build-test-and-deploy.yml (Line: 17, Col: 14): Unrecognized named-value: 'secret'. Located at position 1 within expression: secret.user .github/workflows/build-test-and-deploy.yml (Line: 25, Col: 14): Unrecognized named-value: 'secret'. Located at position 1 within expression: secret.user
echo "user2=${{ secret.user }}" | tee -a "$GITHUB_OUTPUT"
test_environment_secret2:
runs-on: ubuntu-latest
environment: test2
steps:
- name: Run tests
run: |
echo "user2=${{ secret.user }}" | tee -a "$GITHUB_OUTPUT"