Put listItem into a fragment #48
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
name: "UI5 Quality Check App: Docker Build and Publish" | |
on: | |
push: | |
paths: | |
- "UI5_Quality_Checks_App/**" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Build Docker image | |
run: | | |
cd ${{ github.workspace }}/UI5_Quality_Checks_App | |
docker build -t srb-ui5-quality-checks-app . | |
- name: Save Docker image as TAR archive | |
run: docker save srb-ui5-quality-checks-app -o image_quality_checks_app.tar | |
- name: Upload TAR archive as artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: srb-ui5-quality-checks-app | |
path: image_quality_checks_app.tar |