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 75e6503 commit 4c4d3f8Copy full SHA for 4c4d3f8
.github/workflows/build.yml
@@ -39,6 +39,8 @@ jobs:
39
rm -f $HOME/.gitconfig;
40
mkdir -p "$HOME/.nextflow";
41
echo "providers.github.auth='$NXF_GITHUB_ACCESS_TOKEN'" > "$HOME/.nextflow/scm"
42
+ env:
43
+ NXF_GITHUB_ACCESS_TOKEN: ${{ secrets.NXF_GITHUB_ACCESS_TOKEN }}
44
45
- name: Setup Java ${{ matrix.java_version }}
46
uses: actions/setup-java@v3
@@ -77,6 +79,13 @@ jobs:
77
79
with:
78
80
fetch-depth: 1
81
submodules: true
82
+ - name: Setup env
83
+ run: |
84
+ rm -f $HOME/.gitconfig;
85
+ mkdir -p "$HOME/.nextflow";
86
+ echo "providers.github.auth='$NXF_GITHUB_ACCESS_TOKEN'" > "$HOME/.nextflow/scm"
87
88
89
- name: Run tests
90
run: |
91
make assemble install
0 commit comments