1616 container : { image: 'ghcr.io/tim-janik/anklang-ci:ci-latest', options: --user runner }
1717 steps :
1818 - { uses: actions/checkout@v4, with: { fetch-depth: 0 } }
19- - run : git fetch -f --tags # Fix actions/checkout#290
19+ - run : git fetch -f --tags # Fix actions/checkout#290
2020 - run : |
2121 make -w dist
2222 mkdir /tmp/anklang && tar xf artifacts/anklang-*.tar.zst -C /tmp/anklang --strip-components=1
5454 container : { image: 'ghcr.io/tim-janik/anklang-ci:ci-latest', options: --user runner }
5555 steps :
5656 - { uses: actions/checkout@v4, with: { fetch-depth: 0 } }
57- - run : git fetch -f --tags # Fix actions/checkout#290
57+ - run : git fetch -f --tags # Fix actions/checkout#290
5858 - run : git describe --always --long
5959 - name : ' Configure build presets'
6060 run : |
@@ -81,11 +81,11 @@ jobs:
8181 # container: { image: 'ghcr.io/tim-janik/anklang-ci:arch-latest' }
8282 # steps:
8383 # - { uses: actions/checkout@v4, with: { fetch-depth: 0 } }
84- # - run: git fetch -f --tags # Fix actions/checkout#290
84+ # - run: git fetch -f --tags # Fix actions/checkout#290
8585 # - run: git describe --always --long
8686 # - name: 'Configure build presets'
8787 # run: |
88- # echo 'prefix=/' > config-defaults.mk ;# reset any previous config-defaults.mk
88+ # echo 'prefix=/' > config-defaults.mk ;# reset any previous config-defaults.mk
8989 # - name: 'Build Anklang'
9090 # run: |
9191 # make GCC_COLORS="" -j`nproc` all
@@ -103,13 +103,13 @@ jobs:
103103 CreateRelease :
104104 runs-on : ubuntu-latest
105105 needs : [ ReleaseArtifacts ]
106- if : github.ref_type == 'tag' # https://docs.github.com/en/actions/reference/events-that-trigger-workflows
106+ if : github.ref_type == 'tag' # https://docs.github.com/en/actions/reference/events-that-trigger-workflows
107107 # https://docs.github.com/en/actions/security-for-github-actions/security-guides/automatic-token-authentication#modifying-the-permissions-for-the-github_token
108- permissions : { contents: write } # allow github.token to create a release
108+ permissions : { contents: write } # allow github.token to create a release
109109 env : { GH_TOKEN: "${{ github.token }}" }
110110 steps :
111111 - { uses: actions/checkout@v4, with: { fetch-depth: 0 } }
112- - run : git fetch -f --tags # Fix actions/checkout#290
112+ - run : git fetch -f --tags # Fix actions/checkout#290
113113 - uses : actions/download-artifact@v4
114114 with : { path: ./artifacts, merge-multiple: true }
115115 - run : ls -alR artifacts/
@@ -122,7 +122,7 @@ jobs:
122122 runs-on : ubuntu-latest
123123 steps :
124124 - { uses: actions/checkout@v4, with: { fetch-depth: 0 } }
125- - run : git fetch -f --tags # Fix actions/checkout#290
125+ - run : git fetch -f --tags # Fix actions/checkout#290
126126 - name : Check-Jobs
127127 run : |
128128 echo '${{ needs.ReleaseArtifacts.result }}' '${{ needs.CreateRelease.result }}' '${{ needs.NobleClangTidy.result }}'
0 commit comments