Skip to content

Enhance GUI by providing all resource icons #82

Enhance GUI by providing all resource icons

Enhance GUI by providing all resource icons #82

# This workflow will build the container image for amd64 arch. (as a basic build test)
name: Build amd64 container image
on:
# On pull-request event with detailed condition below.
pull_request:
branches:
- main
paths-ignore:
- '**.md'
- '.all-contributorsrc'
- '.gitignore'
- 'LICENSE'
- 'CODEOWNERS'
- 'assets/**'
- 'test/**'
jobs:
# The job key is "building"
building:
# Job name is "Building"
name: Building
# This job runs on Ubuntu-latest
runs-on: ubuntu-20.04
if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
steps:
- name: Checkout source code
uses: actions/checkout@v2.3.4
- name: Build image
env:
# TODO: Change variable to your repository name and image name.
IMAGE_NAME: cb-mapui
run: docker build . --file Dockerfile --tag $IMAGE_NAME