Skip to content

Commit

Permalink
Merge
Browse files Browse the repository at this point in the history
  • Loading branch information
sigurdm committed Nov 29, 2024
2 parents 633ebd7 + c21802d commit 2c183fe
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ on:
workflow_call:
inputs:
environment:
description: if specified, the workflow is required to be run in this environment (with additional approvals)
description: If specified, the workflow is required to be run in this environment (with additional approvals).
required: false
type: string
working-directory:
description: directory with-in the repository where the package is located (if not in the repository root)
description: The directory within the repository where the package is located (if not in the repository root).
required: false
type: string

Expand All @@ -29,13 +29,15 @@ jobs:
steps:
# Checkout repository
- uses: actions/checkout@v4
# Setup Dart SDK with JWT token
# Set up the Dart SDK and provision the OIDC token used for publishing.
# The `dart` command from this step will be shadowed by the one from the
# Flutter SDK below.
- uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672
# Download flutter SDK - needed for publishing Flutter packages. Can also
# publish pure Dart packages.
#
# This will add the flutter/bin/dart executable to path, that sets up
# FLUTTER_ROOT.
# The dart binary from a Flutter SDK facilitates publishing both Flutter
# and pure-dart packages.
- uses: flutter-actions/setup-flutter@d030cb603380106494f72d65a7e52462f380781f
# Minimal package setup and dry run checks.
- name: Install dependencies
Expand Down

0 comments on commit 2c183fe

Please sign in to comment.