diff --git a/action.yaml b/action.yaml index 90a0e3b..b68ceb5 100644 --- a/action.yaml +++ b/action.yaml @@ -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: ${{ github.action_path }}/config-action - id: config-action + uses: kuhnroyal/flutter-fvm-config-action/config@v2 + id: config with: path: ${{ inputs.path }} flavor: ${{ inputs.flavor }} @@ -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' diff --git a/config-action/.node-version b/config/.node-version similarity index 100% rename from config-action/.node-version rename to config/.node-version diff --git a/config-action/.prettierrc b/config/.prettierrc similarity index 100% rename from config-action/.prettierrc rename to config/.prettierrc diff --git a/config-action/action.yaml b/config/action.yaml similarity index 100% rename from config-action/action.yaml rename to config/action.yaml diff --git a/config-action/dist/index.js b/config/dist/index.js similarity index 99% rename from config-action/dist/index.js rename to config/dist/index.js index cd90e30..7a6e369 100644 --- a/config-action/dist/index.js +++ b/config/dist/index.js @@ -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) { diff --git a/config-action/dist/licenses.txt b/config/dist/licenses.txt similarity index 100% rename from config-action/dist/licenses.txt rename to config/dist/licenses.txt diff --git a/config-action/index.js b/config/index.js similarity index 100% rename from config-action/index.js rename to config/index.js diff --git a/config-action/package-lock.json b/config/package-lock.json similarity index 100% rename from config-action/package-lock.json rename to config/package-lock.json diff --git a/config-action/package.json b/config/package.json similarity index 100% rename from config-action/package.json rename to config/package.json