fix: change runner
R
Rüdiger Küpper
<rpr@9it.de>
committete am 19.02.2026 07:14
09199abe40831abea968970e6184682eb1c4d283
| @@ -58,21 +58,21 @@ jobs: | ||
| 58 | 58 | # echo "New version: ${{ steps.tag_version.outputs.new_tag }}" |
| 59 | 59 | # echo "Changelog: ${{ steps.tag_version.outputs.changelog }}" |
| 60 | 60 | |
| 61 | 61 | create-version-tag: |
| 62 | 62 | uses: 9it-full-service/shared-workflows/.github/workflows/prepare.yml@main |
| 63 | 63 | with: |
| 64 | 64 | version_override: ${{ github.event.inputs.version || '' }} |
| 65 | 65 | default_version: 'dev' |
| 66 | 66 | |
| 67 | 67 | build: |
| 68 | -runs-on: [ arc-runner-set-arm64 ] |
|
| 68 | +runs-on: [ arc-runner-set ] |
|
| 69 | 69 | # runs-on: [ self-hosted ] |
| 70 | 70 | needs: [ "create-version-tag" ] |
| 71 | 71 | strategy: |
| 72 | 72 | fail-fast: false |
| 73 | 73 | matrix: |
| 74 | 74 | # goos: [linux,] |
| 75 | 75 | # goarch: [arm64] |
| 76 | 76 | goos: [linux, darwin] |
| 77 | 77 | goarch: [amd64, arm64] |
| 78 | 78 | # goos: [linux, darwin, windows] |
| @@ -189,21 +189,22 @@ jobs: | ||
| 189 | 189 | name: release-bundles-${{ matrix.goos }}-${{ matrix.goarch }}-${{ github.run_attempt }} |
| 190 | 190 | path: | |
| 191 | 191 | dist/*.tar.gz |
| 192 | 192 | dist/*.zip |
| 193 | 193 | dist/CHECKSUMS-*.txt |
| 194 | 194 | if-no-files-found: error |
| 195 | 195 | compression-level: 6 |
| 196 | 196 | |
| 197 | 197 | release: |
| 198 | 198 | needs: [ "build", "create-version-tag" ] |
| 199 | -runs-on: ubuntu-latest |
|
| 199 | +runs-on: arc-runner-set |
|
| 200 | +# runs-on: [ self-hosted ] |
|
| 200 | 201 | steps: |
| 201 | 202 | - name: Download all build artifacts (merged) |
| 202 | 203 | uses: actions/download-artifact@v6 |
| 203 | 204 | with: |
| 204 | 205 | pattern: release-bundles-* |
| 205 | 206 | merge-multiple: true |
| 206 | 207 | path: dist |
| 207 | 208 | |
| 208 | 209 | - name: Übersicht |
| 209 | 210 | run: ls -la dist |