Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:

nightly:
needs: dist
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64, netcup, general]
steps:
- uses: actions/checkout@v4
- name: Move nightly tag
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/quality.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
changes:
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64, netcup, general]
outputs:
rust: ${{ steps.filter.outputs.rust }}
markdown: ${{ steps.filter.outputs.markdown }}
Expand All @@ -35,7 +35,7 @@ jobs:
name: Rust Format Check
needs: changes
if: needs.changes.outputs.rust == 'true'
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64, netcup, general]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
Expand All @@ -48,7 +48,7 @@ jobs:
name: Rust Lint Check
needs: changes
if: needs.changes.outputs.rust == 'true'
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64, netcup, general]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
Expand All @@ -61,7 +61,7 @@ jobs:
name: Markdown Format Check
needs: changes
if: needs.changes.outputs.markdown == 'true'
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64, netcup, general]
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v31
Expand All @@ -71,7 +71,7 @@ jobs:
name: Astro Type Check
needs: changes
if: needs.changes.outputs.site == 'true'
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64, netcup, general]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand All @@ -89,7 +89,7 @@ jobs:
name: Site Format Check
needs: changes
if: needs.changes.outputs.site == 'true'
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64, netcup, general]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:

release:
needs: dist
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64, netcup, general]
steps:
- uses: actions/download-artifact@v4
with:
Expand All @@ -60,7 +60,7 @@ jobs:

publish:
needs: release
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64, netcup, general]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
Expand Down
Loading