File tree 3 files changed +2
-4
lines changed
actions/1-addition/2-feed
3 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -123,7 +123,6 @@ runs:
123
123
PYPI_TOKEN : ${{ inputs.pypi_token }}
124
124
ACTOR : ${{ github.triggering_actor }}
125
125
OWNER : ${{ github.repository_owner }}
126
- BEARER : ${{ steps.auth.outputs.id_token }}
127
126
DOCKER_HUB_TOKEN : ${{ inputs.hub_token }}
128
127
DOCKER_HUB_PASSWORD : ${{ inputs.hub_password }}
129
128
GCP_CREDENTIALS : ${{ inputs.credentials }}
Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ set_target() {
28
28
if [[ " $i " -lt " ${# array[@]} -1" ]]; then echo " ," >> ${RUNNER_TEMP} /orgs.json; fi
29
29
done
30
30
echo " ]" >> ${RUNNER_TEMP} /orgs.json
31
- curl -s -X POST https://us-central1-feedmapping.cloudfunctions.net/function -H " Authorization: Bearer ${BEARER} " -H " Content-Type: application/json" --data @${RUNNER_TEMP} /orgs.json | jq ' .' > ${RUNNER_TEMP} /gist.json
32
31
fi
33
32
34
33
# Iterate the Structure
Original file line number Diff line number Diff line change @@ -78,8 +78,8 @@ if [[ "${JOBS_ID}" == "1" ]]; then
78
78
fi
79
79
80
80
if [[ " ${RERUN_RUNNER} " != " false" ]]; then gh variable set RERUN_RUNNER --body " false" ; fi
81
- cd $1 && javac -d user_data/ft_client/test_client javaCode/Main.java
82
- cd ${GITHUB_WORKSPACE} && mv -f $1 /user_data . && ls -al .
81
+ cd $1 && javac -d user_data/ft_client/test_client javaCode/Main.java && cd ${GITHUB_WORKSPACE}
82
+ if [[ ! -d user_data ]] ; then mv -f $1 /user_data . && ls -al; fi
83
83
84
84
fi
85
85
You can’t perform that action at this time.
0 commit comments