Skip to content

Commit

Permalink
ci: specify github runner to use
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtemSBulgakov committed Nov 21, 2024
1 parent c6e7bc7 commit 44c36e9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-docker-api.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and publish a Docker image
name: [API] Build and publish a Docker image

on:
# Allow manual trigger of the workflow
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
if: github.repository_owner == 'one-zero-eight' && (github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref == 'refs/heads/main'))
name: Deploy to server for ${{ github.event.inputs.environment || 'staging' }}
needs: build-and-push-image
runs-on: self-hosted
runs-on: [self-hosted, innohassle]
environment:
# Set the environment name and URL to be displayed in GitHub
name: ${{ github.event.inputs.environment || 'staging' }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-docker-bot.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and publish a Docker image
name: [Bot] Build and publish a Docker image

on:
# Allow manual trigger of the workflow
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
if: github.repository_owner == 'one-zero-eight' && (github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref == 'refs/heads/main'))
name: Deploy to server for ${{ github.event.inputs.environment || 'staging' }}
needs: build-and-push-image
runs-on: self-hosted
runs-on: [self-hosted, innohassle]
environment:
# Set the environment name and URL to be displayed in GitHub
name: ${{ github.event.inputs.environment || 'staging' }}
Expand Down

0 comments on commit 44c36e9

Please sign in to comment.