-
Notifications
You must be signed in to change notification settings - Fork 3
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
42 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,42 @@ | ||
name: Build and publish GUI | ||
|
||
on: | ||
push: | ||
branches: [ dev ] | ||
paths: | ||
- '.env' | ||
|
||
jobs: | ||
PackageDeploy: | ||
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Docker Setup BuildX | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Load environment variables and set them | ||
run: | | ||
if [ -f .env ]; then | ||
export $(cat .env | grep -v '^#' | xargs) | ||
fi | ||
echo "RELEASE=$RELEASE" >> $GITHUB_ENV | ||
echo "VERSION=$VERSION" >> $GITHUB_ENV | ||
echo "BUILD=$BUILD" >> $GITHUB_ENV | ||
echo "FIX=$FIX" >> $GITHUB_ENV | ||
- name: Set repo | ||
run: | | ||
LOWER_CASE_GITHUB_REPOSITORY=$(echo $GITHUB_REPOSITORY | tr '[:upper:]' '[:lower:]') | ||
echo "DOCKER_TAG_CUSTOM=ghcr.io/${LOWER_CASE_GITHUB_REPOSITORY}:$RELEASE-$VERSION.$BUILD.$FIX" >> $GITHUB_ENV | ||
echo "$GITHUB_ENV" | ||
- name: Docker Build | ||
run: | | ||
cd GUI | ||
docker image build --tag $DOCKER_TAG_CUSTOM . | ||
- name: Log in to GitHub container registry | ||
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin | ||
|
||
- name: Push Docker image to ghcr | ||
run: docker push $DOCKER_TAG_CUSTOM |