Skip to content

Commit

Permalink
fix:: actions-runner 레이블 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
Devheun committed Aug 29, 2024
1 parent b7367ab commit c64d769
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
deploy_develop:
needs: build
if: github.ref == 'refs/heads/develop'
runs-on: self-hosted
runs-on: ['self-hosted', 'dev']
steps:
- name: setup .env.test
run: |
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
deploy_main:
needs: build
if: github.ref == 'refs/heads/main'
runs-on: self-hosted
runs-on: ['self-hosted', 'prod']
env:
ACCOUNT: 'ubuntu'
DOCKER_TAG: 'latest'
Expand Down
2 changes: 1 addition & 1 deletion src/app.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ import { Injectable } from '@nestjs/common';
@Injectable()
export class AppService {
getHello(): string {
return 'Hello World!>___<^_^';
return 'Hello World!^^^^^^^^^^^^^^';
}
}

0 comments on commit c64d769

Please sign in to comment.