Skip to content

Passing flutter version directly in the with block #12

Passing flutter version directly in the with block

Passing flutter version directly in the with block #12

Workflow file for this run

name: Publish auth0_flutter_platform_interface to pub.dev
on:
push:
branches:
- 'reversing_labs'
# tags:
# - 'afpi-v[0-9]+.[0-9]+.[0-9]+*'
permissions:
contents: write
id-token: write
env:
flutter: '3.x'
jobs:
rl-scanner:
uses: ./.github/workflows/rl-scanner.yml

Check failure on line 19 in .github/workflows/publish-afpi.yml

View workflow run for this annotation

GitHub Actions / Publish auth0_flutter_platform_interface to pub.dev

Invalid workflow file

The workflow is not valid. In .github/workflows/publish-afpi.yml (Line: 19, Col: 11): Error from called workflow auth0/auth0-flutter/.github/workflows/rl-scanner.yml@893a61b199e749b57a5c129ef29e679e79b9dbba (Line: 13, Col: 9): Unexpected value 'RLSECURE_LICENSE' In .github/workflows/publish-afpi.yml (Line: 19, Col: 11): Error from called workflow auth0/auth0-flutter/.github/workflows/rl-scanner.yml@893a61b199e749b57a5c129ef29e679e79b9dbba (Line: 15, Col: 9): Unexpected value 'RLSECURE_SITE_KEY'
with:
flutter: '3.x'
artifact-name: 'flutter-auth0-package.zip'
secrets:
RLSECURE_LICENSE: ${{ secrets.RLSECURE_LICENSE }}
RLSECURE_SITE_KEY: ${{ secrets.RLSECURE_SITE_KEY }}
SIGNAL_HANDLER_TOKEN: ${{ secrets.SIGNAL_HANDLER_TOKEN }}
PRODSEC_TOOLS_USER: ${{ secrets.PRODSEC_TOOLS_USER }}
PRODSEC_TOOLS_TOKEN: ${{ secrets.PRODSEC_TOOLS_TOKEN }}
PRODSEC_TOOLS_ARN: ${{ secrets.PRODSEC_TOOLS_ARN }}
publish:
name: Publish auth0_flutter_platform_interface to pub.dev
environment: ${{ github.event.pull_request.head.repo.fork && 'external' || 'internal' }}
needs: rl-scanner
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Setup Flutter and Dart SDK
uses: ./.github/actions/setup-publish
with:
flutter: ${{ env.flutter }}
working-directory: auth0_flutter_platform_interface
- name: Publish
run: dart pub publish -f
working-directory: auth0_flutter_platform_interface