Skip to content

Commit

Permalink
update github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lwlee2608 committed Nov 30, 2023
1 parent afb83c8 commit b5a5579
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,9 @@ jobs:

- name: Build Source Code
run: make

- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: build-artifacts
path: path/to/your/artifacts
8 changes: 8 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@ jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Download Artifacts
uses: actions/download-artifact@v2
with:
name: build-artifacts

- name: Set up Docker Build
uses: docker/setup-buildx-action@v1

Expand Down

0 comments on commit b5a5579

Please sign in to comment.