We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63664c0 commit 0df3f7dCopy full SHA for 0df3f7d
.github/workflows/ci.yml
@@ -23,6 +23,17 @@ env:
23
GOPROXY: "https://${{ secrets.ARTIFACTORY_USER }}:${{ secrets.ARTIFACTORY_TOKEN }}@azr.artifactory.f5net.com/artifactory/api/go/f5-nginx-go-dev"
24
25
jobs:
26
+ set-vars:
27
+ runs-on: ubuntu-22.04
28
+ steps:
29
+ - name: Set Variables
30
+ run: |
31
+ if [[ -z ${{ secrets.ARTIFACTORY_USER }} ]] ||
32
+ [[ -z ${{ secrets.ARTIFACTORY_TOKEN }} ]] ||
33
+ ${{ github.event.pull_request.head.repo.fork }}; then
34
+ echo "GOPROXY=direct" >> $GITHUB_ENV
35
+ fi
36
+
37
lint:
38
name: Lint
39
runs-on: ubuntu-22.04
0 commit comments