Skip to content

feat(fluorflow): initial version of the released framework #5

feat(fluorflow): initial version of the released framework

feat(fluorflow): initial version of the released framework #5

Workflow file for this run

name: Release Package
on:
push:
branches:
- main
jobs:
package_and_publish:
name: Package and Publish
runs-on: ubuntu-latest
permissions:
contents: 'read'
id-token: 'write'
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.DEPLOY_TOKEN }}
- uses: google-github-actions/auth@v2
with:
service_account: smrtv-pub-dev@smartive-internal-shared.iam.gserviceaccount.com
workload_identity_provider: projects/710921990578/locations/global/workloadIdentityPools/github/providers/gh-smartive-org
- uses: dart-lang/setup-dart@v1
with:
sdk: stable
- uses: subosito/flutter-action@v2
with:
channel: stable
- run: gcloud auth print-identity-token --audiences=https://pub.dev | dart pub token add https://pub.dev
- name: release
uses: cycjimmy/semantic-release-action@v3
with:
extra_plugins: |
@semantic-release/exec
@semantic-release/git
@semantic-release/changelog
env:
GITHUB_TOKEN: ${{ secrets.DEPLOY_TOKEN }}