-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-cicd.yml deploy job environment 수정
- Loading branch information
1 parent
05f7348
commit cca7dda
Showing
2 changed files
with
28 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,34 +12,39 @@ jobs: | |
contents: read | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
- uses: actions/checkout@v4 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
|
||
- name: Copy application.yml | ||
env: | ||
OCCUPY_DEPLOY: $OCCUPY_DEPLOY | ||
OCCUPY_DB: $OCCUPY_DB | ||
OCCUPY_AWS: $OCCUPY_AWS | ||
run: | | ||
- name: Copy application.yml | ||
env: | ||
OCCUPY_DEPLOY: ${{ secrets.OCCUPY_DEPLOY }} | ||
OCCUPY_DB: ${{ secrets.OCCUPY_DB }} | ||
OCCUPY_AWS: ${{ secrets.OCCUPY_AWS }} | ||
run: | | ||
cd ./src/main/resources | ||
touch ./application.yml | ||
echo "$OCCUPY_DEPLOY" > ./application.yml | ||
touch ./application-db.yml | ||
echo "$OCCUPY_DEPLOY" > ./application-db.yml | ||
echo "$OCCUPY_DB" > ./application-db.yml | ||
touch ./application-aws.yml | ||
echo "$OCCUPY_DEPLOY" > ./application-aws.yml | ||
- name: Build with Gradle | ||
uses: gradle/gradle-build-action@bd5760595778326ba7f1441bcf7e88b49de61a25 # v2.6.0 | ||
with: | ||
arguments: clean build | ||
echo "$OCCUPY_AWS" > ./application-aws.yml | ||
- name: Docker build & push to dockerhub | ||
run: | | ||
docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD | ||
- name: Build with Gradle | ||
uses: gradle/gradle-build-action@bd5760595778326ba7f1441bcf7e88b49de61a25 # v2.6.0 | ||
with: | ||
arguments: clean build | ||
|
||
- name: Login to DockerHub | ||
uses: docker/[email protected] | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
|
||
- name: Docker build & push to dockerhub | ||
run: | | ||
docker build -f Dockerfile -t minchogt/farmus-spring . | ||
docker push minchogt/farmus-spring |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,6 +53,7 @@ jobs: | |
deploy: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
environment: dev | ||
steps: | ||
- name: Setup SSH | ||
uses: webfactory/[email protected] | ||
|