|
29 | 29 | - name: Checkout main repository |
30 | 30 | uses: actions/checkout@v5 |
31 | 31 | with: |
32 | | - token: ${{ github.token }} |
33 | 32 | fetch-depth: 0 # get full history (so no need for "git fetch --unshallow") |
34 | 33 |
|
35 | 34 | # Configure git identity |
|
43 | 42 | uses: actions/checkout@v5 |
44 | 43 | with: |
45 | 44 | repository: DIRACGrid/DIRAC |
46 | | - path: ../DIRAC |
47 | | - token: ${{ github.token }} |
| 45 | + path: DIRAC |
48 | 46 |
|
49 | 47 | # Set up Python |
50 | 48 | - uses: actions/setup-python@v6 |
|
69 | 67 | PREV_VERSION=$(git describe --tags --abbrev=0 --match '*[0-9].[0-9]*' --exclude 'v[0-9]r*' --exclude 'v[0-9][0-9]r*') |
70 | 68 | REFERENCE_BRANCH=${GITHUB_REF#refs/heads/} |
71 | 69 | echo "Making release notes for ${REFERENCE_BRANCH} since ${PREV_VERSION}" |
72 | | - ../DIRAC/docs/diracdoctools/scripts/dirac-docs-get-release-notes.py \ |
| 70 | + ./DIRAC/docs/diracdoctools/scripts/dirac-docs-get-release-notes.py \ |
73 | 71 | --token "${{ secrets.GITHUB_TOKEN }}" \ |
74 | 72 | --sinceTag "${PREV_VERSION}" \ |
75 | 73 | --branches "${REFERENCE_BRANCH}" \ |
@@ -121,7 +119,7 @@ jobs: |
121 | 119 | echo "Pushing tagged release notes to ${GITHUB_REF#refs/heads/}" |
122 | 120 | git push "origin" "${GITHUB_REF#refs/heads/}" |
123 | 121 | echo "Making GitHub release for ${NEW_VERSION}" |
124 | | - ../DIRAC/.github/workflows/make_release.py \ |
| 122 | + ./DIRAC/.github/workflows/make_release.py \ |
125 | 123 | --repo="${{ github.repository }}" \ |
126 | 124 | --token="${{ secrets.GITHUB_TOKEN }}" \ |
127 | 125 | --version="${NEW_VERSION}" \ |
|
0 commit comments