Skip to content

Commit

Permalink
adjust readme and cleaning
Browse files Browse the repository at this point in the history
  • Loading branch information
realAP committed Mar 27, 2024
1 parent 33d013a commit e69c5ca
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/github-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@ jobs:
env:
SERVER_ARTIFACT: ${{ needs.variables.outputs.SERVER_ARTIFACT }}
HTML_ARTIFACT: ${{ needs.variables.outputs.HTML_ARTIFACT }}
IMAGE_HTML: component-html
IMAGE_SERVER: component-server
HTML_IMAGE: component-html
SERVER_IMAGE: component-server
WINSLOW_IMAGE: ${{ needs.variables.outputs.WINSLOW_IMAGE }}
WINSLOW_IMAGE_ARTIFACT: ${{ needs.variables.outputs.WINSLOW_IMAGE_ARTIFACT }}
steps:
Expand All @@ -164,7 +164,7 @@ jobs:
path: .
- name: Build backend image
run: |
docker build . -t $IMAGE_SERVER
docker build . -t $SERVER_IMAGE
- name: Download frontend
uses: actions/download-artifact@v4
Expand All @@ -175,12 +175,12 @@ jobs:
run: |
mv winslow-ui-ng ui-ng/winslow-ui-ng
cd ui-ng
docker build . -t $IMAGE_HTML
docker build . -t $HTML_IMAGE
- name: Build winslow image
run: |
cd node
docker build . -t $WINSLOW_IMAGE --build-arg COMPONENT_HTML=$IMAGE_HTML --build-arg COMPONENT_SERVER=$IMAGE_SERVER
docker build . -t $WINSLOW_IMAGE --build-arg COMPONENT_HTML=$HTML_IMAGE --build-arg COMPONENT_SERVER=$SERVER_IMAGE
- name: Prepare upload of winslow image to github
run: |
Expand Down Expand Up @@ -227,7 +227,7 @@ jobs:
id: determine_tag
run: |
if [[ "$GITHUB_REF_NAME" == "master" ]]; then
TAG=dev
TAG=latest
elif [[ "$GITHUB_REF_TYPE" == "tag" ]]; then
TAG=${GITHUB_REF_NAME}
elif [[ "$GITHUB_REF_TYPE" == "branch" && "$GITHUB_REF_NAME" =~ ^20[0-9]{2}\.[0-9]+$ ]]; then
Expand Down
2 changes: 1 addition & 1 deletion node/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ Further documentation can be found on [GitHub](https://github.com/IT-Designers/w
There are following tags available:
- `20xx.x` - The release version of Winslow, which matches the corresponding git **tag** `20xx.x`
- `20xx.x-dev` - The current state of the corresponding git **branch** `20xx.x`
- `dev` - The current state of git master branch
- `latest` - The current state of git master branch

0 comments on commit e69c5ca

Please sign in to comment.