You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 14, 2020. It is now read-only.
Every step is occurring until it gets to Scope for Swift where I get a warning messing: Received request to deprovision: The request was cancelled by the remote provider. and a failure message: An error occurred while provisioning resources (Error Type: Disconnect).
Here is the workflow file I am using:
name: Scope Testing
on: [push]
jobs:
scope:
runs-on: macOS-latest
steps:
- name: Check if SCOPE_DSN is set
run: if [ "${{secrets.SCOPE_DSN}}" = "" ]; then exit 1; fi
- name: Checkout
uses: actions/checkout@v1
- name: Build dependencies
run: pod install
- name: Scope for Swift
uses: undefinedlabs/scope-for-swift-action@v1
with:
dsn: ${{ secrets.SCOPE_DSN }}
platform: ios
codePath: true
env:
SCOPE_INSTRUMENTATION_HTTP_PAYLOADS: YES
The text was updated successfully, but these errors were encountered:
HI Cody,
That message is not something that the action is printing, so it is something coming from Github.
Is your project public (so I can check the error in GitHub) ?
if not could you post some more information:
How long did it take for the fail to happen after starting?
Are there any other errors happening before that one?
What is the output of the "Scope for Swift" step when it fails if there is any?
Can you post some image from the output?
There is also a sample project at https://github.com/scope-demo/scope-ios-actions-starter with the steps needed to make it work. Maybe using that project and instructions you can find out why it is failing in your project.
The output in GitHub Actions should show something like:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Every step is occurring until it gets to Scope for Swift where I get a warning messing:
Received request to deprovision: The request was cancelled by the remote provider.
and a failure message:An error occurred while provisioning resources (Error Type: Disconnect).
Here is the workflow file I am using:
The text was updated successfully, but these errors were encountered: