Skip to content

Commit 021560f

Browse files
authored
fix(workflows): self-hosted runner 인식 못하는 문제 수정
1 parent 7997618 commit 021560f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
deploy:
10-
runs-on: self-hosted
10+
runs-on: [self-hosted, linux, x64]
1111
steps:
1212
- name: Checkout Repository
1313
uses: actions/checkout@v3
@@ -25,4 +25,4 @@ jobs:
2525
-e SPRING_DATASOURCE_URL="jdbc:postgresql://${{ secrets.DB_HOST }}:${{ secrets.DB_PORT }}/${{ secrets.DB_NAME }}" \
2626
-e SPRING_DATASOURCE_USERNAME="${{ secrets.DB_USERNAME }}" \
2727
-e SPRING_DATASOURCE_PASSWORD="${{ secrets.DB_PASSWORD }}" \
28-
-p 8080:8080 my-app
28+
-p 8080:8080 my-app

0 commit comments

Comments
 (0)