Skip to content

test publish

test publish #3

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
- run: dart pub publish -f
working-directory: packages/fluorflow
#
# - 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 }}
# CREDENTIALS: ${{ secrets.PUB_DEV_CREDENTIALS }}