Skip to content

Commit

Permalink
Build container image in CI, fix CD
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnStarich committed Apr 21, 2023
1 parent 86b56b5 commit 534a41d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build
run: docker build -t hackpad .
run: make docker
- name: Publish
run: |
git config --global user.email ""
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ jobs:
- name: Lint
run: make lint

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build image
run: make docker

test:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 534a41d

Please sign in to comment.