Skip to content

Commit

Permalink
Merge pull request #30 from kuhnroyal/fix/action-path
Browse files Browse the repository at this point in the history
  • Loading branch information
kuhnroyal authored Aug 25, 2024
2 parents 708e17f + 4570b1e commit d10bec6
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ inputs:
outputs:
FLUTTER_VERSION:
description: 'The version of Flutter specified in the fvm configuration file'
value: ${{ steps.config-action.outputs.FLUTTER_VERSION }}
value: ${{ steps.config.outputs.FLUTTER_VERSION }}
FLUTTER_CHANNEL:
description: 'The channel of Flutter specified in the fvm configuration file'
value: ${{ steps.config-action.outputs.FLUTTER_CHANNEL }}
value: ${{ steps.config.outputs.FLUTTER_CHANNEL }}
runs:
using: 'composite'
steps:
- name: Parse configuration
uses: ./config-action
id: config-action
uses: kuhnroyal/flutter-fvm-config-action/config@v2
id: config
with:
path: ${{ inputs.path }}
flavor: ${{ inputs.flavor }}
Expand All @@ -38,8 +38,8 @@ runs:
if: inputs.setup == 'true'
with:
cache: ${{ inputs.cache }}
flutter-version: ${{ steps.config-action.outputs.FLUTTER_VERSION }}
channel: ${{ steps.config-action.outputs.FLUTTER_CHANNEL }}
flutter-version: ${{ steps.config.outputs.FLUTTER_VERSION }}
channel: ${{ steps.config.outputs.FLUTTER_CHANNEL }}
branding:
icon: 'maximize'
color: 'blue'
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion config-action/dist/index.js → config/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ class OidcClient {
.catch(error => {
throw new Error(`Failed to get ID Token. \n
Error Code : ${error.statusCode}\n
Error Message: ${error.result.message}`);
Error Message: ${error.message}`);
});
const id_token = (_a = res.result) === null || _a === void 0 ? void 0 : _a.value;
if (!id_token) {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit d10bec6

Please sign in to comment.