From 18e431a7994eea6d116eed136e729f7ccbc7860c Mon Sep 17 00:00:00 2001 From: Mihaly Lengyel Date: Tue, 10 Oct 2023 17:52:51 +0200 Subject: [PATCH] ci: experimental changes --- .github/workflows/tests.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ab142509c..8cedb7a39 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -48,10 +48,10 @@ jobs: node-version: "16" - name: Environment variables run: | - echo "Plugin Interface Owner: ${{ github.event.inputs.pluginInterfaceRepoOwnerName }}" - echo "Plugin Interface Branch: ${{ github.event.inputs.pluginInterfaceBranchName }}" - echo "Core Owner: ${{ github.event.inputs.coreRepoOwnerName }}" - echo "Core Branch: ${{ github.event.inputs.coreBranchName }}" + echo "Plugin Interface Owner: ${{ inputs.pluginInterfaceRepoOwnerName }}" + echo "Plugin Interface Branch: ${{ inputs.pluginInterfaceBranchName }}" + echo "Core Owner: ${{ inputs.coreRepoOwnerName }}" + echo "Core Branch: ${{ inputs.coreBranchName }}" - name: Make git use https instead of ssh run: git config --global url."https://github.com/".insteadOf ssh://git@github.com/ - run: npm i --force @@ -62,7 +62,7 @@ jobs: - name: Update Java 2 run: update-alternatives --install "/usr/bin/javac" "javac" "/usr/java/jdk-15.0.1/bin/javac" 2 - name: Modifying modules.txt in supertokens-root - run: cd ../supertokens-root && echo "core,${{ github.event.inputs.coreBranchName }},${{ github.event.inputs.coreRepoOwnerName }}\nplugin-interface,${{ github.event.inputs.pluginInterfaceBranchName }},${{ github.event.inputs.pluginInterfaceRepoOwnerName }}" > modules.txt + run: cd ../supertokens-root && echo "core,${{ inputs.coreBranchName }},${{ inputs.coreRepoOwnerName }}\nplugin-interface,${{ inputs.pluginInterfaceBranchName }},${{ github.event.inputs.pluginInterfaceRepoOwnerName }}" > modules.txt - name: Contents of modules.txt run: cat ../supertokens-root/modules.txt - name: Running loadModules in supertokens-root