Skip to content

Commit 809f4f2

Browse files
committed
TEMP: change to prod artificatory for now
1 parent 0c12a1f commit 809f4f2

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -54,16 +54,8 @@ jobs:
5454
- name: Configure GOPROXY
5555
id: goproxy
5656
run: |
57-
if [[ "${{ secrets.ARTIFACTORY_USER }}" == "" ]]; then
58-
echo "No Artifactory secrets available - using direct GOPROXY"
59-
GOPROXY_VALUE="direct"
60-
elif [[ "${{ inputs.is_production_release }}" == "true" ]] || [[ "${{ github.event_name }}" == "push" && "${{ github.ref }}" == "refs/heads/main" ]]; then
61-
echo "Production mode - using production Artifactory"
57+
echo "Temp use prod artifactory"
6258
GOPROXY_VALUE="https://${{ secrets.ARTIFACTORY_USER }}:${{ secrets.ARTIFACTORY_TOKEN }}@${{ secrets.ARTIFACTORY_ENDPOINT }}"
63-
else
64-
echo "Development mode - using dev Artifactory"
65-
GOPROXY_VALUE="https://${{ secrets.ARTIFACTORY_USER }}:${{ secrets.ARTIFACTORY_TOKEN }}@${{ secrets.ARTIFACTORY_DEV_ENDPOINT }}"
66-
fi
6759
echo "goproxy=${GOPROXY_VALUE}" >> $GITHUB_OUTPUT
6860
echo "GOPROXY=${GOPROXY_VALUE}" >> $GITHUB_ENV
6961

0 commit comments

Comments
 (0)