Dockerfile: apt-get upgrade -y to get the latest packages #149
Workflow file for this run
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: Build | |
on: | |
push: | |
branches: | |
- master | |
pull_request: {} | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout HEAD | |
uses: actions/checkout@v1 | |
- shell: bash | |
run: sudo apt-get update | |
- name: QEMU | |
run: sudo apt-get install -y qemu-user-static binfmt-support | |
- run: docker buildx create --use | |
- name: Icinga Web 2 | |
run: git clone https://github.com/Icinga/icingaweb2.git | |
- name: Build | |
run: ./build.bash ./icingaweb2 release all |