mirror of
https://github.com/flame-engine/flame.git
synced 2026-03-27 12:21:35 +00:00
This should fetch all history and tags etc, which is needed to properly version and publish.
25 lines
522 B
YAML
25 lines
522 B
YAML
name: Publish packages
|
|
on:
|
|
# Enable to also publish, when pushing a tag
|
|
#push:
|
|
# tags:
|
|
# - '*'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
publish-packages:
|
|
name: Publish packages
|
|
permissions:
|
|
contents: write
|
|
id-token: write # Required for authentication using OIDC
|
|
runs-on: [ ubuntu-latest ]
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: subosito/flutter-action@v2
|
|
- uses: bluefireteam/melos-action@v3
|
|
with:
|
|
publish: true
|
|
|