fix(helm-publish): fix secrets reference in if condition (#1) #3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test Reusable Workflows | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - '.github/workflows/**' | |
| - 'tests/**' | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - '.github/workflows/**' | |
| - 'tests/**' | |
| jobs: | |
| test-workflow-outputs: | |
| name: Test Docker Workflow Outputs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run workflow output tests | |
| run: | | |
| chmod +x tests/test-docker-workflow-outputs.sh | |
| ./tests/test-docker-workflow-outputs.sh |