-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request 'v2.4.2' (#4) from v2.4.2 into master
Reviewed-on: http://192.168.123.5/jinnrry/PMail_Github/pulls/4
- Loading branch information
Showing
5 changed files
with
47 additions
and
14 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 |
---|---|---|
|
@@ -39,7 +39,10 @@ jobs: | |
- uses: actions/setup-node@v4 | ||
|
||
- name: Build FE | ||
run: make build_fe | ||
run: | | ||
echo "$(git show -s --format=%H)" | ||
echo "GITHASH=$(git show -s --format=%H)" >> ${GITHUB_ENV} | ||
make build_fe | ||
- name: Log in to the Container registry | ||
uses: docker/[email protected] | ||
|
@@ -51,6 +54,9 @@ jobs: | |
- name: Build and push Docker images | ||
uses: docker/build-push-action@v4 | ||
with: | ||
build-args: | | ||
VERSION=${{ env.VERSION }} | ||
GITHASH=${{ env.GITHASH }} | ||
context: . | ||
file: ./DockerfileGithubAction | ||
platforms: | | ||
|
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 |
---|---|---|
|
@@ -39,7 +39,9 @@ jobs: | |
- uses: actions/setup-node@v4 | ||
|
||
- name: Build FE | ||
run: make build_fe | ||
run: | | ||
echo "GITHASH=$(git show -s --format=%H)" >> ${GITHUB_ENV} | ||
make build_fe | ||
- name: Log in to the Container registry | ||
uses: docker/[email protected] | ||
|
@@ -51,7 +53,9 @@ jobs: | |
- name: Build and push Docker images | ||
uses: docker/build-push-action@v4 | ||
with: | ||
build-args: VERSION=${{ env.VERSION }} | ||
build-args: | | ||
VERSION=${{ env.VERSION }} | ||
GITHASH=${{ env.GITHASH }} | ||
context: . | ||
file: ./DockerfileGithubAction | ||
platforms: | | ||
|
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
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
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