Skip to content

Commit

Permalink
Workflows should use make clean.
Browse files Browse the repository at this point in the history
  • Loading branch information
fewtarius committed Nov 8, 2024
1 parent 55d262d commit c0b3928
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,8 @@ jobs:
- name: Set the version
id: version
run: echo "version=$(date +'%Y%m%d.%H%M')" >> $GITHUB_OUTPUT
- name: Build Release Images
- name: Build Local Images
run: |
set -e
make image-clean
make build-clean
make clean
make image rel BUILD_VER="${{ steps.version.outputs.version }}"
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ jobs:
- name: Build Release Images
run: |
set -e
make image-clean
make build-clean
make clean
make image rel BUILD_VER="${{ steps.version.outputs.version }}"
- name: Sync release images to the primary instance
run: |
Expand Down

0 comments on commit c0b3928

Please sign in to comment.