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 41fb667 commit 1e45d03Copy full SHA for 1e45d03
.github/workflows/deployment.yml
@@ -25,7 +25,12 @@ jobs:
25
run:
26
shell: bash -l {0}
27
steps:
28
- - name: Main repo
+ - name: configure git
29
+ run: |
30
+ git fetch --prune --unshallow
31
+ git config --global user.email "ci@diracgrid.org"
32
+ git config --global user.name "DIRACGrid CI"
33
+ - name: Checkout Main repo
34
uses: actions/checkout@v5
35
with:
36
token: ${{ secrets.PAT || github.token }}
@@ -35,10 +40,6 @@ jobs:
40
repository: DIRACGrid/DIRAC
41
path: ../DIRAC
37
42
38
- run: |
39
- git fetch --prune --unshallow
- git config --global user.email "ci@diracgrid.org"
- git config --global user.name "DIRACGrid CI"
43
- uses: actions/setup-python@v6
44
45
python-version: "3.11"
0 commit comments