Skip to content

Commit

Permalink
ci: experimental changes
Browse files Browse the repository at this point in the history
  • Loading branch information
porcellus committed Oct 10, 2023
1 parent 8bb6de7 commit 18e431a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 18e431a

Please sign in to comment.