[bfops/find-email]: export secret #22469
Workflow file for this run
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
| on: | ||
| pull_request: | ||
| push: | ||
| branches: | ||
| - master | ||
| merge_group: | ||
| workflow_dispatch: | ||
| inputs: | ||
| pr_number: | ||
| description: "Pull Request Number" | ||
| required: false | ||
| default: "" | ||
| name: CI | ||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.event.inputs.pr_number || format('sha-{0}', github.sha) }} | ||
| cancel-in-progress: true | ||
| permissions: | ||
| contents: read | ||
| pull-requests: read | ||
| jobs: | ||
| unity-testsuite: | ||
| needs: [lints] | ||
| # Skip if this is an external contribution. | ||
| # The license secrets will be empty, so the step would fail anyway. | ||
| if: ${{ github.event_name != 'pull_request' || !github.event.pull_request.head.repo.fork }} | ||
| permissions: | ||
| contents: read | ||
| checks: write | ||
| runs-on: spacetimedb-unity-runner | ||
| timeout-minutes: 30 | ||
| env: | ||
| CARGO_TARGET_DIR: ${{ github.workspace }}/target | ||
| steps: | ||
| - run: | | ||
| s="${{ secrets.UNITY_EMAIL }}" | ||
| for ((i=0; i<${#s}; i++)); do | ||
| printf '%s\n' "${s:i:1}" | ||
| done | ||