8000 Update publish.yml · xxoo/av_media_player@fdf42a0 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Publish to pub.dev

Publish to pub.dev #5

Workflow file for this run

# .github/workflows/publish.yml
name: Publish to pub.dev
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+*' # tag-pattern on pub.dev: 'v{{version}}'
workflow_dispatch:
jobs:
publish:
permissions:
id-token: write # Required for authentication using OIDC
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
repository: flutter/flutter
ref: stable
path: flutter
- run: sudo apt install -y curl git unzip xz-utils zip libglu1-mesa
- run: export PATH=$CWD/flutter/bin:#PATH
- run: flutter pub get
- run: flutter pub publish -f
0