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/dockerhub-description.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
update-description:
runs-on: [self-hosted, Linux, X64]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:
jobs:
test:
name: Test
runs-on: [self-hosted, Linux, X64]
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
docker-build:
name: Build and Push Docker Image
needs: test
runs-on: [self-hosted, Linux, X64]
runs-on: ubuntu-latest
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/v'))
permissions:
contents: read
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
build-package:
name: Build Python Package
needs: test
runs-on: [self-hosted, Linux, X64]
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v')

steps:
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
release:
name: Create GitHub Release
needs: [test, build-package, docker-build]
runs-on: [self-hosted, Linux, X64]
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v')
permissions:
contents: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
stale:
runs-on: [self-hosted, Linux, X64]
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v10
with:
Expand Down
Loading