Skip to content

docs: clean up changelog (#15) #16

docs: clean up changelog (#15)

docs: clean up changelog (#15) #16

Workflow file for this run

name: Release Package
on:
push:
branches:
- main
jobs:
package_and_publish:
name: Package and Publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.REPO_DEPLOYMENT_TOKEN }}
- uses: google-github-actions/auth@v2
with:
credentials_json: '${{ secrets.GOOGLE_CREDENTIALS }}'
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- run: flutter pub get
- run: gcloud auth print-identity-token --audiences=https://pub.dev | dart pub token add https://pub.dev
- name: release
uses: cycjimmy/semantic-release-action@v4
with:
extra_plugins: |
@semantic-release/exec
@semantic-release/git
@semantic-release/changelog
env:
GITHUB_TOKEN: ${{ secrets.REPO_DEPLOYMENT_TOKEN }}