Skip to content

Commit

Permalink
ci: revert some unintended changes
Browse files Browse the repository at this point in the history
  • Loading branch information
porcellus committed Oct 10, 2023
1 parent dac006c commit 8bb6de7
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,6 @@ jobs:
echo "Plugin Interface Branch: ${{ github.event.inputs.pluginInterfaceBranchName }}"
echo "Core Owner: ${{ github.event.inputs.coreRepoOwnerName }}"
echo "Core Branch: ${{ github.event.inputs.coreBranchName }}"
- name: Environment variables
run: |
echo "Plugin Interface Owner: ${{ $PLUGIN_INTERFACE_OWNER }}"
echo "Plugin Interface Branch: ${{ PLUGIN_INTERFACE_BRANCH }}"
echo "Core Owner: ${{ $CORE_OWNER }}"
echo "Core Branch: ${{ CORE_BRANCH }}"
- 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 @@ -68,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,${{ CORE_BRANCH }},${{ $CORE_OWNER }}\nplugin-interface,${{ PLUGIN_INTERFACE_BRANCH }},${{ $PLUGIN_INTERFACE_OWNER }}" > modules.txt
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
- name: Contents of modules.txt
run: cat ../supertokens-root/modules.txt
- name: Running loadModules in supertokens-root
Expand Down

0 comments on commit 8bb6de7

Please sign in to comment.