Skip to content

ci: update docs deployment environment #26

ci: update docs deployment environment

ci: update docs deployment environment #26

Workflow file for this run

name: CI - On Release
on:
push:
# tags:
# - "v[0-9]+.[0-9]+.[0-9]+*"
jobs:
# check-package:
# runs-on: ubuntu-latest
# permissions:
# id-token: write
# environment: pub.dev
# steps:
# - uses: actions/checkout@v4
# - uses: dart-lang/setup-dart@v1
# - name: Install Flutter
# uses: subosito/flutter-action@v2
# with:
# cache: true
# - name: Install dependencies
# run: flutter pub get
# - name: Format code
# run: dart format --fix .
# - name: Check Publish Warnings
# run: dart pub publish --dry-run
# - name: Publish
# run: dart pub publish --force
deploy-website:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v7
with:
github-token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
script: |
await github.rest.actions.createWorkflowDispatch({
owner: 'zebratechnologies',
repo: 'zeta',
workflow_id: 'deploy.yml',
ref: 'main',
Environment: 'production',
})