-
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.
- Loading branch information
Showing
1 changed file
with
29 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Docker Image CI | ||
|
||
on: | ||
push: | ||
branches: ["master"] | ||
pull_request: | ||
branches: ["master"] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Build the Docker image | ||
run: docker build . --file Dockerfile --tag weihua:latest | ||
|
||
- name: | ||
Install ssh keys | ||
# check this thread to understand why its needed: | ||
# <https://stackoverflow.com/a/70447517> | ||
run: | | ||
install -m 600 -D /dev/null ~/.ssh/id_rsa | ||
echo "${{ secrets.M }}" > ~/.ssh/id_rsa | ||
ssh-keyscan -H junction.nyman.dev > ~/.ssh/known_hosts | ||
- name: Copy image to server | ||
run: docker save weihua:latest | bzip2 | ssh [email protected] "docker load && cd backend && docker compose up -d" |