Skip to content

[bfops/find-email]: export secret #22469

[bfops/find-email]: export secret

[bfops/find-email]: export secret #22469

Workflow file for this run

on:

Check failure on line 1 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

(Line: 25, Col: 3): The workflow must contain at least one job with no dependencies.
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